windmill-api 1.542.3__tar.gz → 1.603.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- windmill_api-1.603.0/PKG-INFO +134 -0
- windmill_api-1.603.0/pyproject.toml +40 -0
- windmill_api-1.603.0/windmill_api/api/agent_workers/get_min_version.py +120 -0
- windmill_api-1.603.0/windmill_api/api/app/get_public_secret_of_latest_version_of_app.py +101 -0
- windmill_api-1.603.0/windmill_api/api/concurrency_groups/list_extended_jobs.py +656 -0
- windmill_api-1.603.0/windmill_api/api/config/list_autoscaling_events.py +192 -0
- windmill_api-1.603.0/windmill_api/api/documentation/query_documentation.py +155 -0
- windmill_api-1.603.0/windmill_api/api/email_trigger/set_email_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/flow/get_flow_version.py +166 -0
- windmill_api-1.603.0/windmill_api/api/flow/list_flows.py +327 -0
- windmill_api-1.603.0/windmill_api/api/flow/update_flow_history.py +113 -0
- windmill_api-1.603.0/windmill_api/api/flow_conversation/delete_flow_conversation.py +101 -0
- windmill_api-1.603.0/windmill_api/api/flow_conversation/list_conversation_messages.py +221 -0
- windmill_api-1.603.0/windmill_api/api/flow_conversation/list_flow_conversations.py +207 -0
- windmill_api-1.603.0/windmill_api/api/folder/get_folder_permission_history.py +206 -0
- windmill_api-1.603.0/windmill_api/api/gcp_trigger/set_gcp_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/git_sync/get_global_connected_repositories.py +162 -0
- windmill_api-1.603.0/windmill_api/api/group/get_group_permission_history.py +206 -0
- windmill_api-1.603.0/windmill_api/api/helpers/check_s3_folder_exists.py +172 -0
- windmill_api-1.603.0/windmill_api/api/helpers/git_repo_viewer_file_upload.py +262 -0
- windmill_api-1.603.0/windmill_api/api/helpers/list_git_repo_files.py +221 -0
- windmill_api-1.603.0/windmill_api/api/helpers/load_git_repo_file_metadata.py +187 -0
- windmill_api-1.603.0/windmill_api/api/helpers/load_git_repo_file_preview.py +277 -0
- windmill_api-1.603.0/windmill_api/api/http_trigger/set_http_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/job/cancel_selection.py +183 -0
- windmill_api-1.603.0/windmill_api/api/job/delete_jobs.py +104 -0
- windmill_api-1.603.0/windmill_api/api/job/export_completed_jobs.py +192 -0
- windmill_api-1.603.0/windmill_api/api/job/export_queued_jobs.py +192 -0
- windmill_api-1.603.0/windmill_api/api/job/get_completed_job_timing.py +166 -0
- windmill_api-1.603.0/windmill_api/api/job/get_started_at_by_ids.py +175 -0
- windmill_api-1.603.0/windmill_api/api/job/import_completed_jobs.py +109 -0
- windmill_api-1.603.0/windmill_api/api/job/import_queued_jobs.py +109 -0
- windmill_api-1.603.0/windmill_api/api/job/list_filtered_jobs_uuids.py +650 -0
- windmill_api-1.603.0/windmill_api/api/job/list_jobs.py +703 -0
- windmill_api-1.603.0/windmill_api/api/job/list_queue.py +555 -0
- windmill_api-1.603.0/windmill_api/api/job/restart_flow_at_step.py +185 -0
- windmill_api-1.603.0/windmill_api/api/job/run_and_stream_flow_by_path.py +171 -0
- windmill_api-1.603.0/windmill_api/api/job/run_and_stream_flow_by_path_get.py +169 -0
- windmill_api-1.603.0/windmill_api/api/job/run_and_stream_flow_by_version.py +171 -0
- windmill_api-1.603.0/windmill_api/api/job/run_and_stream_flow_by_version_get.py +169 -0
- windmill_api-1.603.0/windmill_api/api/job/run_and_stream_script_by_hash.py +189 -0
- windmill_api-1.603.0/windmill_api/api/job/run_and_stream_script_by_hash_get.py +187 -0
- windmill_api-1.603.0/windmill_api/api/job/run_and_stream_script_by_path.py +189 -0
- windmill_api-1.603.0/windmill_api/api/job/run_and_stream_script_by_path_get.py +187 -0
- windmill_api-1.603.0/windmill_api/api/job/run_dynamic_select.py +105 -0
- windmill_api-1.603.0/windmill_api/api/job/run_flow_by_path.py +203 -0
- windmill_api-1.603.0/windmill_api/api/job/run_flow_by_version.py +203 -0
- windmill_api-1.603.0/windmill_api/api/job/run_flow_preview.py +145 -0
- windmill_api-1.603.0/windmill_api/api/job/run_flow_preview_and_wait_result.py +120 -0
- windmill_api-1.603.0/windmill_api/api/job/run_script_preview_inline.py +107 -0
- windmill_api-1.603.0/windmill_api/api/job/run_wait_result_flow_by_path.py +164 -0
- windmill_api-1.603.0/windmill_api/api/job/run_wait_result_flow_by_version.py +166 -0
- windmill_api-1.603.0/windmill_api/api/job/run_wait_result_flow_by_version_get.py +162 -0
- windmill_api-1.603.0/windmill_api/api/job/run_wait_result_script_by_path.py +182 -0
- windmill_api-1.603.0/windmill_api/api/job/run_wait_result_script_by_path_get.py +180 -0
- windmill_api-1.603.0/windmill_api/api/kafka_trigger/set_kafka_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/mqtt_trigger/set_mqtt_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/nats_trigger/set_nats_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/oidc/get_oidc_token.py +115 -0
- windmill_api-1.603.0/windmill_api/api/postgres_trigger/set_postgres_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/resource/get_git_commit_hash.py +186 -0
- windmill_api-1.603.0/windmill_api/api/resource/get_mcp_tools.py +171 -0
- windmill_api-1.603.0/windmill_api/api/script/list_scripts.py +432 -0
- windmill_api-1.603.0/windmill_api/api/script/pick_hub_script_by_path.py +152 -0
- windmill_api-1.603.0/windmill_api/api/setting/list_custom_instance_dbs.py +126 -0
- windmill_api-1.603.0/windmill_api/api/setting/refresh_custom_instance_user_pwd.py +126 -0
- windmill_api-1.603.0/windmill_api/api/setting/setup_custom_instance_db.py +170 -0
- windmill_api-1.603.0/windmill_api/api/sqs_trigger/set_sqs_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/trigger/cancel_suspended_trigger_jobs.py +197 -0
- windmill_api-1.603.0/windmill_api/api/trigger/resume_suspended_trigger_jobs.py +197 -0
- windmill_api-1.603.0/windmill_api/api/user/convert_user_to_group.py +101 -0
- windmill_api-1.603.0/windmill_api/api/user/is_smtp_configured.py +120 -0
- windmill_api-1.603.0/windmill_api/api/user/request_password_reset.py +158 -0
- windmill_api-1.603.0/windmill_api/api/user/reset_password.py +158 -0
- windmill_api-1.603.0/windmill_api/api/user/submit_onboarding_data.py +149 -0
- windmill_api-1.603.0/windmill_api/api/websocket_trigger/__init__.py +0 -0
- windmill_api-1.603.0/windmill_api/api/websocket_trigger/set_websocket_trigger_mode.py +113 -0
- windmill_api-1.603.0/windmill_api/api/worker/__init__.py +0 -0
- windmill_api-1.603.0/windmill_api/api/workspace/__init__.py +0 -0
- windmill_api-1.603.0/windmill_api/api/workspace/compare_workspaces.py +178 -0
- windmill_api-1.603.0/windmill_api/api/workspace/create_workspace_fork.py +105 -0
- windmill_api-1.603.0/windmill_api/api/workspace/create_workspace_fork_git_branch.py +165 -0
- windmill_api-1.603.0/windmill_api/api/workspace/delete_workspace.py +107 -0
- windmill_api-1.603.0/windmill_api/api/workspace/delete_workspace_slack_oauth_config.py +93 -0
- windmill_api-1.603.0/windmill_api/api/workspace/edit_data_table_config.py +107 -0
- windmill_api-1.603.0/windmill_api/api/workspace/get_dependency_map.py +157 -0
- windmill_api-1.603.0/windmill_api/api/workspace/get_dependents.py +171 -0
- windmill_api-1.603.0/windmill_api/api/workspace/get_dependents_amounts.py +174 -0
- windmill_api-1.603.0/windmill_api/api/workspace/get_workspace_as_super_admin.py +152 -0
- windmill_api-1.603.0/windmill_api/api/workspace/get_workspace_slack_oauth_config.py +152 -0
- windmill_api-1.603.0/windmill_api/api/workspace/list_available_teams_channels.py +172 -0
- windmill_api-1.603.0/windmill_api/api/workspace/list_available_teams_ids.py +187 -0
- windmill_api-1.603.0/windmill_api/api/workspace/list_data_table_schemas.py +157 -0
- windmill_api-1.603.0/windmill_api/api/workspace/list_data_tables.py +147 -0
- windmill_api-1.603.0/windmill_api/api/workspace/rebuild_dependency_map.py +93 -0
- windmill_api-1.603.0/windmill_api/api/workspace/reset_diff_tally.py +107 -0
- windmill_api-1.603.0/windmill_api/api/workspace/set_workspace_slack_oauth_config.py +105 -0
- windmill_api-1.603.0/windmill_api/api/workspace_dependencies/__init__.py +0 -0
- windmill_api-1.603.0/windmill_api/api/workspace_dependencies/archive_workspace_dependencies.py +118 -0
- windmill_api-1.603.0/windmill_api/api/workspace_dependencies/create_workspace_dependencies.py +105 -0
- windmill_api-1.603.0/windmill_api/api/workspace_dependencies/delete_workspace_dependencies.py +118 -0
- windmill_api-1.603.0/windmill_api/api/workspace_dependencies/get_latest_workspace_dependencies.py +187 -0
- windmill_api-1.603.0/windmill_api/api/workspace_dependencies/list_workspace_dependencies.py +157 -0
- windmill_api-1.603.0/windmill_api/models/agent_tool.py +124 -0
- windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_0.py +61 -0
- windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_0_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_1.py +91 -0
- windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_1_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_2.py +61 -0
- windmill_api-1.603.0/windmill_api/models/agent_tool_value_type_2_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent.py +106 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms.py +596 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_max_completion_tokens_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_max_completion_tokens_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_max_completion_tokens_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_max_completion_tokens_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_memory_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_memory_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_memory_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_memory_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_schema_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_schema_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_schema_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_schema_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_type_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_type_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_type_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_output_type_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_provider_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_provider_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_provider_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_provider_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_streaming_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_streaming_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_streaming_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_streaming_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_system_prompt_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_system_prompt_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_system_prompt_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_system_prompt_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_temperature_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_temperature_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_temperature_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_temperature_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_images_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_images_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_images_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_images_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_message_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_message_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_message_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_input_transforms_user_message_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item.py +126 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_0.py +61 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_0_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_1.py +91 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_1_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_2.py +61 -0
- windmill_api-1.603.0/windmill_api/models/ai_agent_tools_item_value_type_2_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/ai_config.py +143 -0
- windmill_api-1.603.0/windmill_api/models/ai_config_code_completion_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/ai_config_default_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/ai_config_max_tokens_per_model.py +44 -0
- windmill_api-1.603.0/windmill_api/models/ai_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/ai_provider_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/archive_script_by_hash_response_200.py +415 -0
- windmill_api-1.603.0/windmill_api/models/archive_workspace_dependencies_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/asset_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/audit_log.py +140 -0
- windmill_api-1.603.0/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_0.py +80 -0
- windmill_api-1.603.0/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_1.py +78 -0
- windmill_api-1.603.0/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_0.py +80 -0
- windmill_api-1.603.0/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_1.py +78 -0
- windmill_api-1.603.0/windmill_api/models/branch_all.py +96 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item.py +92 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item.py +378 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend.py +210 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_one.py +105 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item.py +92 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item.py +378 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend.py +210 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item.py +345 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend.py +202 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend_resume_form.py +74 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/branch_one_default_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/cancel_suspended_trigger_jobs_json_body.py +61 -0
- windmill_api-1.603.0/windmill_api/models/cancel_suspended_trigger_jobs_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/check_s3_folder_exists_response_200.py +65 -0
- windmill_api-1.603.0/windmill_api/models/compare_summary.py +114 -0
- windmill_api-1.603.0/windmill_api/models/compare_workspaces_response_200.py +105 -0
- windmill_api-1.603.0/windmill_api/models/compare_workspaces_response_200_diffs_item.py +103 -0
- windmill_api-1.603.0/windmill_api/models/compare_workspaces_response_200_diffs_item_kind.py +12 -0
- windmill_api-1.603.0/windmill_api/models/compare_workspaces_response_200_summary.py +115 -0
- windmill_api-1.603.0/windmill_api/models/completed_job.py +415 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module.py +386 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item.py +373 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module.py +389 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow.py +278 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module.py +378 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend.py +210 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item.py +362 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_retry.py +117 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend.py +208 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_notes_item.py +143 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module.py +393 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend.py +214 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/create_account_json_body.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body.py +156 -0
- windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_email_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body.py +231 -0
- windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_gcp_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body.py +264 -0
- windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_http_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item.py +272 -0
- windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_retry.py +117 -0
- windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_http_triggers_json_body_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body.py +163 -0
- windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_kafka_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body.py +230 -0
- windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_mqtt_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body.py +177 -0
- windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_nats_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body.py +184 -0
- windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_retry.py +113 -0
- windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_postgres_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_schedule_json_body.py +308 -0
- windmill_api-1.603.0/windmill_api/models/create_schedule_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_schedule_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_schedule_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_schedule_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_script_json_body.py +380 -0
- windmill_api-1.603.0/windmill_api/models/create_script_json_body_assets_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body.py +173 -0
- windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_sqs_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body.py +280 -0
- windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_retry.py +117 -0
- windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/create_websocket_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/create_workspace_dependencies_json_body.py +92 -0
- windmill_api-1.603.0/windmill_api/models/create_workspace_dependencies_json_body_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/create_workspace_fork.py +75 -0
- windmill_api-1.603.0/windmill_api/models/create_workspace_fork_git_branch_json_body.py +75 -0
- windmill_api-1.603.0/windmill_api/models/create_workspace_fork_json_body.py +75 -0
- windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_created_database.py +10 -0
- windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_database_credentials.py +10 -0
- windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_db_connect.py +10 -0
- windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_grant_permissions.py +10 -0
- windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_super_admin.py +10 -0
- windmill_api-1.603.0/windmill_api/models/custom_instance_db_logs_valid_dbname.py +10 -0
- windmill_api-1.603.0/windmill_api/models/custom_instance_db_tag.py +9 -0
- windmill_api-1.603.0/windmill_api/models/data_table_schema.py +83 -0
- windmill_api-1.603.0/windmill_api/models/data_table_schema_schemas.py +62 -0
- windmill_api-1.603.0/windmill_api/models/data_table_schema_schemas_additional_property.py +66 -0
- windmill_api-1.603.0/windmill_api/models/data_table_schema_schemas_additional_property_additional_property.py +44 -0
- windmill_api-1.603.0/windmill_api/models/data_table_settings.py +64 -0
- windmill_api-1.603.0/windmill_api/models/data_table_settings_datatables.py +66 -0
- windmill_api-1.603.0/windmill_api/models/data_table_settings_datatables_additional_property.py +68 -0
- windmill_api-1.603.0/windmill_api/models/data_table_settings_datatables_additional_property_database.py +72 -0
- windmill_api-1.603.0/windmill_api/models/data_table_settings_datatables_additional_property_database_resource_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200.py +421 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1.py +114 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item.py +402 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module.py +409 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +119 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow.py +297 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module.py +417 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item.py +413 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module.py +422 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend.py +221 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/delete_script_by_hash_response_200.py +415 -0
- windmill_api-1.603.0/windmill_api/models/delete_workspace_dependencies_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/dependency_dependent.py +82 -0
- windmill_api-1.603.0/windmill_api/models/dependency_dependent_importer_kind.py +10 -0
- windmill_api-1.603.0/windmill_api/models/dependency_map.py +90 -0
- windmill_api-1.603.0/windmill_api/models/dependents_amount.py +65 -0
- windmill_api-1.603.0/windmill_api/models/ducklake_settings_ducklakes_additional_property.py +93 -0
- windmill_api-1.603.0/windmill_api/models/dynamic_input_data.py +118 -0
- windmill_api-1.603.0/windmill_api/models/dynamic_input_data_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_0_runnable_kind.py +9 -0
- windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_0_source.py +8 -0
- windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_1.py +85 -0
- windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_1_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/dynamic_input_data_runnable_ref_type_1_source.py +8 -0
- windmill_api-1.603.0/windmill_api/models/edit_copilot_config_json_body.py +149 -0
- windmill_api-1.603.0/windmill_api/models/edit_copilot_config_json_body_code_completion_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/edit_copilot_config_json_body_default_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/edit_copilot_config_json_body_max_tokens_per_model.py +44 -0
- windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body.py +64 -0
- windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings.py +68 -0
- windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings_datatables.py +66 -0
- windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings_datatables_additional_property.py +68 -0
- windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings_datatables_additional_property_database.py +74 -0
- windmill_api-1.603.0/windmill_api/models/edit_data_table_config_json_body_settings_datatables_additional_property_database_resource_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property.py +93 -0
- windmill_api-1.603.0/windmill_api/models/edit_email_trigger.py +137 -0
- windmill_api-1.603.0/windmill_api/models/edit_email_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_email_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_email_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_email_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/edit_http_trigger.py +245 -0
- windmill_api-1.603.0/windmill_api/models/edit_http_trigger_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/edit_http_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_http_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_http_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_http_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger.py +143 -0
- windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_kafka_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage.py +161 -0
- windmill_api-1.603.0/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_advanced_permissions_item.py +65 -0
- windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger.py +225 -0
- windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_mqtt_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/edit_nats_trigger.py +159 -0
- windmill_api-1.603.0/windmill_api/models/edit_nats_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_nats_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_nats_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_nats_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger.py +178 -0
- windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_postgres_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/edit_schedule.py +279 -0
- windmill_api-1.603.0/windmill_api/models/edit_schedule_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_schedule_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_schedule_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_schedule_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger.py +172 -0
- windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_sqs_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger.py +245 -0
- windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/edit_websocket_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/email_trigger.py +186 -0
- windmill_api-1.603.0/windmill_api/models/email_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/email_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/email_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/email_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/email_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/execute_component_json_body.py +189 -0
- windmill_api-1.603.0/windmill_api/models/execute_component_json_body_run_query_params.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item.py +513 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_flow_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_raw_flow.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_result.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/export_completed_jobs_response_200_item_workflow_as_code_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item.py +482 -0
- windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_flow_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_raw_flow.py +44 -0
- windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/export_queued_jobs_response_200_item_workflow_as_code_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job.py +503 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job_flow_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job_raw_flow.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job_result.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/exportable_completed_job_workflow_as_code_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_queued_job.py +476 -0
- windmill_api-1.603.0/windmill_api/models/exportable_queued_job_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_queued_job_flow_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_queued_job_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/exportable_queued_job_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/exportable_queued_job_raw_flow.py +44 -0
- windmill_api-1.603.0/windmill_api/models/exportable_queued_job_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/exportable_queued_job_workflow_as_code_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0.py +435 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module.py +410 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item.py +399 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module.py +402 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +116 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow.py +292 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item.py +411 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module.py +417 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1.py +435 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module.py +410 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item.py +399 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module.py +402 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +116 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow.py +292 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item.py +411 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module.py +417 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_conversation.py +107 -0
- windmill_api-1.603.0/windmill_api/models/flow_conversation_message.py +117 -0
- windmill_api-1.603.0/windmill_api/models/flow_conversation_message_message_type.py +11 -0
- windmill_api-1.603.0/windmill_api/models/flow_module.py +337 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_retry.py +108 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_suspend.py +185 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_suspend_resume_form.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_suspend_user_groups_required_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_suspend_user_groups_required_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_tool.py +61 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_tool_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_0_assets_item.py +102 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_0_assets_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_iterator_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_iterator_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_parallelism_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_parallelism_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_parallelism_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_3_parallelism_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_parallelism_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_parallelism_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_parallelism_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_4_parallelism_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_7.py +71 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_max_completion_tokens_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_max_completion_tokens_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_max_completion_tokens_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_max_completion_tokens_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_memory_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_memory_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_memory_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_memory_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_schema_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_schema_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_schema_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_schema_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_type_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_type_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_type_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_output_type_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_provider_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_provider_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_provider_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_provider_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_streaming_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_streaming_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_streaming_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_streaming_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_system_prompt_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_system_prompt_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_system_prompt_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_system_prompt_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_temperature_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_temperature_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_temperature_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_temperature_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_images_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_images_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_images_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_images_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_message_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_message_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_message_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_input_transforms_user_message_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_0.py +63 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_0_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_1.py +93 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_1_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_2.py +63 -0
- windmill_api-1.603.0/windmill_api/models/flow_module_value_2_type_8_tools_item_value_type_2_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_note.py +142 -0
- windmill_api-1.603.0/windmill_api/models/flow_note_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/flow_note_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/flow_note_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview.py +110 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_restarted_from.py +82 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value.py +278 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module.py +355 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_retry.py +113 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend.py +206 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_failure_module_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item.py +351 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_retry.py +111 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend.py +206 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_modules_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_notes_item.py +143 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module.py +386 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend.py +212 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module.py +369 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module.py +338 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_1.py +108 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_2.py +60 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_3.py +60 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item.py +352 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module.py +362 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_failure_module_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_modules_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/flow_value_preprocessor_module_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow.py +205 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_iterator_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_iterator_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item.py +347 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend.py +202 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_modules_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_parallelism_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_parallelism_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_parallelism_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/forloop_flow_parallelism_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger.py +261 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_data.py +230 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_data_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_retry.py +108 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/gcp_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_audit_log_response_200.py +140 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200.py +419 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module.py +410 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item.py +399 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module.py +402 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +116 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow.py +292 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module.py +419 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_completed_job_timing_response_200.py +87 -0
- windmill_api-1.603.0/windmill_api/models/get_copilot_info_response_200.py +149 -0
- windmill_api-1.603.0/windmill_api/models/get_copilot_info_response_200_code_completion_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/get_copilot_info_response_200_default_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/get_copilot_info_response_200_max_tokens_per_model.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_dependency_map_response_200_item.py +90 -0
- windmill_api-1.603.0/windmill_api/models/get_dependents_amounts_response_200_item.py +65 -0
- windmill_api-1.603.0/windmill_api/models/get_dependents_response_200_item.py +82 -0
- windmill_api-1.603.0/windmill_api/models/get_dependents_response_200_item_importer_kind.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200.py +189 -0
- windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_email_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200.py +240 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_schema.py +47 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value.py +284 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_notes_item.py +149 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft.py +252 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_schema.py +47 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value.py +302 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module.py +428 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_resume_form.py +79 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item.py +422 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend.py +221 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_notes_item.py +155 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module.py +430 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_constant.py +69 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_retry_if.py +61 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_resume_form.py +81 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_0.py +82 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_1.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_deployment_status_response_200.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200.py +240 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_schema.py +47 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value.py +284 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_notes_item.py +150 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_folder_permission_history_response_200_item.py +100 -0
- windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200.py +262 -0
- windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_gcp_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_git_commit_hash_response_200.py +58 -0
- windmill_api-1.603.0/windmill_api/models/get_global_connected_repositories_response_200_item.py +126 -0
- windmill_api-1.603.0/windmill_api/models/get_group_permission_history_response_200_item.py +100 -0
- windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200.py +278 -0
- windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_http_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow.py +103 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_schema.py +47 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value.py +296 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item.py +413 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module.py +419 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0.py +433 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module.py +408 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item.py +399 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module.py +402 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow.py +284 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_notes_item.py +149 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1.py +433 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module.py +408 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item.py +399 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module.py +402 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow.py +284 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item.py +411 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_notes_item.py +149 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module.py +408 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item.py +399 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module.py +402 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +114 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200.py +228 -0
- windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_kafka_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_large_file_storage_config_response_200.py +152 -0
- windmill_api-1.603.0/windmill_api/models/get_large_file_storage_config_response_200_advanced_permissions_item.py +65 -0
- windmill_api-1.603.0/windmill_api/models/get_latest_workspace_dependencies_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/get_latest_workspace_dependencies_response_200.py +118 -0
- windmill_api-1.603.0/windmill_api/models/get_latest_workspace_dependencies_response_200_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/get_mcp_tools_response_200_item.py +82 -0
- windmill_api-1.603.0/windmill_api/models/get_mcp_tools_response_200_item_parameters.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200.py +295 -0
- windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_mqtt_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200.py +242 -0
- windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_nats_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200.py +229 -0
- windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_retry.py +113 -0
- windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_postgres_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_runnable_response_200.py +96 -0
- windmill_api-1.603.0/windmill_api/models/get_schedule_response_200.py +355 -0
- windmill_api-1.603.0/windmill_api/models/get_schedule_response_200_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/get_schedule_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_schedule_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_schedule_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_script_by_hash_response_200.py +415 -0
- windmill_api-1.603.0/windmill_api/models/get_script_by_path_response_200.py +415 -0
- windmill_api-1.603.0/windmill_api/models/get_script_by_path_with_draft_response_200.py +409 -0
- windmill_api-1.603.0/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/get_script_by_path_with_draft_response_200_draft.py +390 -0
- windmill_api-1.603.0/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/get_script_deployment_status_response_200.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200.py +433 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ai_config.py +155 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ai_config_code_completion_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ai_config_default_model_provider.py +18 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ai_config_max_tokens_per_model.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable_datatables.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable_datatables_additional_property.py +68 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable_datatables_additional_property_database.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_datatable_datatables_additional_property_database_resource_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property.py +93 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_large_file_storage.py +152 -0
- windmill_api-1.603.0/windmill_api/models/get_settings_response_200_large_file_storage_advanced_permissions_item.py +65 -0
- windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200.py +238 -0
- windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_sqs_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py +451 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module.py +427 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +48 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item.py +409 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +50 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module.py +423 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +50 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_iterator.py +87 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow.py +302 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module.py +428 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_resume_form.py +81 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +82 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item.py +428 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_resume_form.py +79 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_notes_item.py +155 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module.py +432 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_constant.py +69 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_retry_if.py +61 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_stop_after_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1.py +451 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module.py +427 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +48 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item.py +409 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +50 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module.py +423 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +50 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_iterator.py +87 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow.py +302 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module.py +428 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_resume_form.py +81 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +82 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item.py +428 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_resume_form.py +79 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_notes_item.py +155 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module.py +432 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_constant.py +69 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_retry_if.py +61 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_stop_after_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +78 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/get_tutorial_progress_response_200.py +66 -0
- windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200.py +345 -0
- windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_retry.py +117 -0
- windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/get_websocket_trigger_response_200_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/get_workspace_as_super_admin_response_200.py +98 -0
- windmill_api-1.603.0/windmill_api/models/get_workspace_slack_oauth_config_response_200.py +66 -0
- windmill_api-1.603.0/windmill_api/models/git_repo_viewer_file_upload_response_200.py +58 -0
- windmill_api-1.603.0/windmill_api/models/github_installations_item.py +120 -0
- windmill_api-1.603.0/windmill_api/models/global_user_info.py +130 -0
- windmill_api-1.603.0/windmill_api/models/global_whoami_response_200.py +130 -0
- windmill_api-1.603.0/windmill_api/models/http_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/http_trigger.py +275 -0
- windmill_api-1.603.0/windmill_api/models/http_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/http_trigger_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/http_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/http_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/http_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/http_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/identity.py +71 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item.py +509 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_flow_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_raw_flow.py +44 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_result.py +44 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/import_completed_jobs_json_body_item_workflow_as_code_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item.py +482 -0
- windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_flow_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_raw_flow.py +44 -0
- windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/import_queued_jobs_json_body_item_workflow_as_code_status.py +44 -0
- windmill_api-1.603.0/windmill_api/models/input_transform_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/input_transform_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/javascript_transform.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/kafka_trigger.py +225 -0
- windmill_api-1.603.0/windmill_api/models/kafka_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/kafka_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/kafka_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/kafka_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/kafka_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/large_file_storage.py +144 -0
- windmill_api-1.603.0/windmill_api/models/large_file_storage_advanced_permissions_item.py +65 -0
- windmill_api-1.603.0/windmill_api/models/list_assets_by_usage_response_200_item_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/list_assets_response_200_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/list_audit_logs_response_200_item.py +140 -0
- windmill_api-1.603.0/windmill_api/models/list_available_teams_channels_response_200.py +88 -0
- windmill_api-1.603.0/windmill_api/models/list_available_teams_channels_response_200_channels_item.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_available_teams_ids_response_200.py +100 -0
- windmill_api-1.603.0/windmill_api/models/list_available_teams_ids_response_200_teams_item.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item.py +423 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module.py +416 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1.py +116 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item.py +402 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1.py +116 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module.py +415 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +48 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow.py +302 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module.py +419 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item.py +417 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module.py +428 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_conversation_messages_response_200_item.py +119 -0
- windmill_api-1.603.0/windmill_api/models/list_conversation_messages_response_200_item_message_type.py +11 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property.py +104 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs.py +169 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_created_database.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_database_credentials.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_db_connect.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_grant_permissions.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_super_admin.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_logs_valid_dbname.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_custom_instance_dbs_response_200_additional_property_tag.py +9 -0
- windmill_api-1.603.0/windmill_api/models/list_data_table_schemas_response_200_item.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_data_table_schemas_response_200_item_schemas.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_data_table_schemas_response_200_item_schemas_additional_property.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_data_table_schemas_response_200_item_schemas_additional_property_additional_property.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item.py +193 -0
- windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_email_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py +453 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module.py +431 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +48 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item.py +418 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +48 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module.py +425 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +125 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +50 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +70 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +70 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_iterator.py +87 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow.py +302 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module.py +428 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_constant.py +69 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_retry_if.py +61 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form.py +81 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +82 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item.py +428 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form.py +81 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +82 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_notes_item.py +155 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module.py +436 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry.py +131 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_constant.py +69 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +61 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend.py +220 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.py +453 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module.py +431 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +48 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item.py +418 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +121 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +48 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module.py +425 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +125 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +50 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +70 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +70 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +73 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_iterator.py +87 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow.py +302 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module.py +428 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_constant.py +69 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_retry_if.py +61 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form.py +81 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +82 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item.py +428 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form.py +81 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +82 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_notes_item.py +155 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module.py +436 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry.py +131 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_constant.py +69 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +61 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend.py +220 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_extended_jobs_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/list_flow_conversations_response_200_item.py +107 -0
- windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item.py +272 -0
- windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_retry.py +117 -0
- windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_gcp_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_git_repo_files_response_200.py +98 -0
- windmill_api-1.603.0/windmill_api/models/list_git_repo_files_response_200_windmill_large_files_item.py +58 -0
- windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item.py +286 -0
- windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_retry.py +120 -0
- windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_http_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0.py +437 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +114 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item.py +401 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module.py +407 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +119 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow.py +297 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item.py +413 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module.py +422 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1.py +437 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +114 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item.py +401 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module.py +407 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +119 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3.py +64 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow.py +297 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item.py +413 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module.py +422 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_jobs_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item.py +232 -0
- windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_kafka_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item.py +301 -0
- windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_retry.py +120 -0
- windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_mqtt_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item.py +246 -0
- windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_retry.py +120 -0
- windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_nats_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item.py +233 -0
- windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_postgres_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item.py +419 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module.py +408 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item.py +399 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1.py +112 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module.py +402 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1.py +114 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +46 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow.py +288 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item.py +411 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_notes_item.py +152 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module.py +417 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/list_queue_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item.py +367 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item_retry.py +111 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item.py +403 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_scripts_response_200_item.py +415 -0
- windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item.py +244 -0
- windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_retry.py +117 -0
- windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_sqs_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_user_workspaces_response_200_workspaces_item.py +134 -0
- windmill_api-1.603.0/windmill_api/models/list_users_as_super_admin_response_200_item.py +132 -0
- windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item.py +356 -0
- windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/list_websocket_triggers_response_200_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/list_workers_response_200_item.py +212 -0
- windmill_api-1.603.0/windmill_api/models/list_workspace_dependencies_response_200_item.py +118 -0
- windmill_api-1.603.0/windmill_api/models/list_workspace_dependencies_response_200_item_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/load_git_repo_file_metadata_response_200.py +108 -0
- windmill_api-1.603.0/windmill_api/models/load_git_repo_file_preview_response_200.py +78 -0
- windmill_api-1.603.0/windmill_api/models/load_git_repo_file_preview_response_200_content_type.py +11 -0
- windmill_api-1.603.0/windmill_api/models/logged_wizard_status.py +10 -0
- windmill_api-1.603.0/windmill_api/models/mcp_tool_value.py +91 -0
- windmill_api-1.603.0/windmill_api/models/mcp_tool_value_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/mqtt_trigger.py +290 -0
- windmill_api-1.603.0/windmill_api/models/mqtt_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/mqtt_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/mqtt_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/mqtt_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/mqtt_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/nats_trigger.py +241 -0
- windmill_api-1.603.0/windmill_api/models/nats_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/nats_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/nats_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/nats_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/nats_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_email_trigger.py +153 -0
- windmill_api-1.603.0/windmill_api/models/new_email_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_email_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_email_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_email_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_email_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_http_trigger.py +261 -0
- windmill_api-1.603.0/windmill_api/models/new_http_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_http_trigger_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_http_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_http_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_http_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_http_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_kafka_trigger.py +160 -0
- windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_kafka_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger.py +225 -0
- windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_mqtt_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_nats_trigger.py +176 -0
- windmill_api-1.603.0/windmill_api/models/new_nats_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_nats_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_nats_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_nats_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_nats_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_postgres_trigger.py +180 -0
- windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_postgres_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_schedule.py +306 -0
- windmill_api-1.603.0/windmill_api/models/new_schedule_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_schedule_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_schedule_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_schedule_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_script.py +380 -0
- windmill_api-1.603.0/windmill_api/models/new_script_assets_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/new_script_with_draft.py +405 -0
- windmill_api-1.603.0/windmill_api/models/new_script_with_draft_assets_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/new_script_with_draft_draft.py +380 -0
- windmill_api-1.603.0/windmill_api/models/new_script_with_draft_draft_assets_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/new_sqs_trigger.py +172 -0
- windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_sqs_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_websocket_trigger.py +257 -0
- windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/new_websocket_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/new_workspace_dependencies.py +92 -0
- windmill_api-1.603.0/windmill_api/models/new_workspace_dependencies_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/open_flow.py +102 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_schema.py +47 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value.py +278 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module.py +351 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend.py +204 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_failure_module_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item.py +351 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend.py +202 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_modules_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_notes_item.py +143 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module.py +366 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_retry.py +118 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend.py +208 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path.py +165 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_schema.py +47 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value.py +278 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module.py +376 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_retry.py +122 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend.py +208 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item.py +361 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_retry.py +117 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend.py +206 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_notes_item.py +143 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module.py +393 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend.py +214 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/password_reset_response.py +58 -0
- windmill_api-1.603.0/windmill_api/models/path_flow.py +83 -0
- windmill_api-1.603.0/windmill_api/models/path_flow_input_transforms.py +109 -0
- windmill_api-1.603.0/windmill_api/models/path_flow_input_transforms_additional_property_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/path_flow_input_transforms_additional_property_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/path_script.py +110 -0
- windmill_api-1.603.0/windmill_api/models/path_script_input_transforms.py +107 -0
- windmill_api-1.603.0/windmill_api/models/path_script_input_transforms_additional_property_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/path_script_input_transforms_additional_property_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/pick_hub_script_by_path_response_200.py +58 -0
- windmill_api-1.603.0/windmill_api/models/postgres_trigger.py +224 -0
- windmill_api-1.603.0/windmill_api/models/postgres_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/postgres_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/postgres_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/postgres_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/postgres_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/preview_inline.py +81 -0
- windmill_api-1.603.0/windmill_api/models/preview_inline_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/preview_inline_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/query_documentation_json_body.py +58 -0
- windmill_api-1.603.0/windmill_api/models/query_documentation_response_200.py +44 -0
- windmill_api-1.603.0/windmill_api/models/queued_job.py +415 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module.py +382 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_failure_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item.py +368 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_modules_item_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module.py +387 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1.py +110 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1_arguments.py +44 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_2.py +62 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_2_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_3.py +62 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_3_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_flow_jobs_duration.py +71 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_flow_status_preprocessor_module_iterator.py +85 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_job_kind.py +25 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow.py +278 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module.py +355 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_retry.py +115 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend.py +206 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item.py +351 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_retry.py +111 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend.py +206 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_notes_item.py +143 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module.py +386 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend.py +212 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/raw_script.py +173 -0
- windmill_api-1.603.0/windmill_api/models/raw_script_assets_item.py +102 -0
- windmill_api-1.603.0/windmill_api/models/raw_script_assets_item_kind.py +11 -0
- windmill_api-1.603.0/windmill_api/models/raw_script_input_transforms.py +106 -0
- windmill_api-1.603.0/windmill_api/models/raw_script_input_transforms_additional_property_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/raw_script_input_transforms_additional_property_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/refresh_custom_instance_user_pwd_response_200.py +44 -0
- windmill_api-1.603.0/windmill_api/models/request_password_reset_json_body.py +58 -0
- windmill_api-1.603.0/windmill_api/models/request_password_reset_response_200.py +58 -0
- windmill_api-1.603.0/windmill_api/models/reset_password_json_body.py +65 -0
- windmill_api-1.603.0/windmill_api/models/reset_password_response_200.py +58 -0
- windmill_api-1.603.0/windmill_api/models/restart_flow_at_step_json_body.py +78 -0
- windmill_api-1.603.0/windmill_api/models/restarted_from.py +82 -0
- windmill_api-1.603.0/windmill_api/models/resume_suspended_trigger_jobs_json_body.py +61 -0
- windmill_api-1.603.0/windmill_api/models/resume_suspended_trigger_jobs_trigger_kind.py +19 -0
- windmill_api-1.603.0/windmill_api/models/retry.py +108 -0
- windmill_api-1.603.0/windmill_api/models/retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_and_stream_flow_by_path_json_body.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_and_stream_flow_by_version_json_body.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_and_stream_script_by_hash_json_body.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_and_stream_script_by_path_json_body.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body.py +118 -0
- windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_0.py +80 -0
- windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_0_runnable_kind.py +9 -0
- windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_0_source.py +8 -0
- windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_1.py +89 -0
- windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_1_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/run_dynamic_select_json_body_runnable_ref_type_1_source.py +8 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_by_version_json_body.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body.py +115 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_restarted_from.py +82 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value.py +302 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module.py +422 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item.py +419 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend.py +217 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_notes_item.py +154 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module.py +428 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry.py +125 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_stop_after_all_iters_if.py +80 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend.py +219 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_resume_form.py +81 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_resume_form_schema.py +46 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_0.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_1.py +76 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body.py +111 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_restarted_from.py +82 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value.py +282 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module.py +411 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_flow_env.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item.py +405 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_notes_item.py +147 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_notes_item_position.py +66 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_notes_item_size.py +66 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_notes_item_type.py +9 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module.py +413 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry.py +123 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend.py +216 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_resume_form.py +77 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_0.py +76 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_1.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/run_script_preview_inline_json_body.py +81 -0
- windmill_api-1.603.0/windmill_api/models/run_script_preview_inline_json_body_args.py +44 -0
- windmill_api-1.603.0/windmill_api/models/run_script_preview_inline_json_body_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/run_wait_result_flow_by_version_json_body.py +44 -0
- windmill_api-1.603.0/windmill_api/models/s3_permission_rule.py +65 -0
- windmill_api-1.603.0/windmill_api/models/schedule.py +352 -0
- windmill_api-1.603.0/windmill_api/models/schedule_retry.py +108 -0
- windmill_api-1.603.0/windmill_api/models/schedule_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/schedule_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/schedule_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/schedule_w_jobs.py +376 -0
- windmill_api-1.603.0/windmill_api/models/schedule_w_jobs_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/schedule_w_jobs_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/schedule_w_jobs_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/schedule_w_jobs_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/script.py +415 -0
- windmill_api-1.603.0/windmill_api/models/set_email_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_email_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_gcp_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_gcp_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_http_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_http_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_kafka_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_kafka_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_mqtt_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_mqtt_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_nats_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_nats_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_postgres_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_postgres_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_sqs_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_sqs_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_websocket_trigger_mode_json_body.py +60 -0
- windmill_api-1.603.0/windmill_api/models/set_websocket_trigger_mode_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/set_workspace_slack_oauth_config_json_body.py +65 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_json_body.py +66 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_json_body_tag.py +9 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200.py +98 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs.py +161 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_created_database.py +10 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_database_credentials.py +10 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_db_connect.py +10 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_grant_permissions.py +10 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_super_admin.py +10 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_logs_valid_dbname.py +10 -0
- windmill_api-1.603.0/windmill_api/models/setup_custom_instance_db_response_200_tag.py +9 -0
- windmill_api-1.603.0/windmill_api/models/sqs_trigger.py +237 -0
- windmill_api-1.603.0/windmill_api/models/sqs_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/sqs_trigger_retry.py +108 -0
- windmill_api-1.603.0/windmill_api/models/sqs_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/sqs_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/sqs_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/static_transform.py +72 -0
- windmill_api-1.603.0/windmill_api/models/stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/submit_onboarding_data_json_body.py +66 -0
- windmill_api-1.603.0/windmill_api/models/tool_value_type_0.py +61 -0
- windmill_api-1.603.0/windmill_api/models/tool_value_type_0_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/tool_value_type_1.py +91 -0
- windmill_api-1.603.0/windmill_api/models/tool_value_type_1_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/tool_value_type_2.py +61 -0
- windmill_api-1.603.0/windmill_api/models/tool_value_type_2_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/trigger_extra_property.py +126 -0
- windmill_api-1.603.0/windmill_api/models/trigger_extra_property_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body.py +140 -0
- windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_email_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body.py +231 -0
- windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_gcp_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body.py +248 -0
- windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_request_type.py +10 -0
- windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_http_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body.py +146 -0
- windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_kafka_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body.py +230 -0
- windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_mqtt_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body.py +160 -0
- windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_nats_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body.py +182 -0
- windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_retry.py +113 -0
- windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_postgres_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_schedule_json_body.py +279 -0
- windmill_api-1.603.0/windmill_api/models/update_schedule_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/update_schedule_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_schedule_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_schedule_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body.py +173 -0
- windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_sqs_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/update_tutorial_progress_json_body.py +66 -0
- windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body.py +263 -0
- windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body_retry.py +117 -0
- windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/update_websocket_trigger_json_body_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/user_workspace_list_workspaces_item.py +132 -0
- windmill_api-1.603.0/windmill_api/models/websearch_tool_value.py +61 -0
- windmill_api-1.603.0/windmill_api/models/websearch_tool_value_tool_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/websocket_trigger.py +314 -0
- windmill_api-1.603.0/windmill_api/models/websocket_trigger_mode.py +10 -0
- windmill_api-1.603.0/windmill_api/models/websocket_trigger_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/websocket_trigger_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/websocket_trigger_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/websocket_trigger_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow.py +169 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item.py +349 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_mock.py +67 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_retry.py +109 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_retry_constant.py +67 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_retry_exponential.py +83 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_retry_retry_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_skip_if.py +59 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_sleep_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_sleep_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_stop_after_all_iters_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_stop_after_if.py +78 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend.py +202 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend_resume_form.py +76 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend_resume_form_schema.py +44 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_0.py +74 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1.py +72 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_timeout_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_modules_item_timeout_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_parallelism_type_0.py +72 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_parallelism_type_0_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_parallelism_type_1.py +70 -0
- windmill_api-1.603.0/windmill_api/models/whileloop_flow_parallelism_type_1_type.py +8 -0
- windmill_api-1.603.0/windmill_api/models/worker_ping.py +212 -0
- windmill_api-1.603.0/windmill_api/models/workspace_comparison.py +105 -0
- windmill_api-1.603.0/windmill_api/models/workspace_comparison_diffs_item.py +103 -0
- windmill_api-1.603.0/windmill_api/models/workspace_comparison_diffs_item_kind.py +12 -0
- windmill_api-1.603.0/windmill_api/models/workspace_comparison_summary.py +115 -0
- windmill_api-1.603.0/windmill_api/models/workspace_dependencies.py +116 -0
- windmill_api-1.603.0/windmill_api/models/workspace_dependencies_language.py +29 -0
- windmill_api-1.603.0/windmill_api/models/workspace_item_diff.py +103 -0
- windmill_api-1.603.0/windmill_api/models/workspace_item_diff_kind.py +12 -0
- windmill_api-1.542.3/PKG-INFO +0 -134
- windmill_api-1.542.3/pyproject.toml +0 -40
- windmill_api-1.542.3/windmill_api/api/concurrency_groups/list_extended_jobs.py +0 -615
- windmill_api-1.542.3/windmill_api/api/config/list_autoscaling_events.py +0 -157
- windmill_api-1.542.3/windmill_api/api/flow/get_flow_version.py +0 -180
- windmill_api-1.542.3/windmill_api/api/flow/list_flows.py +0 -312
- windmill_api-1.542.3/windmill_api/api/flow/update_flow_history.py +0 -121
- windmill_api-1.542.3/windmill_api/api/gcp_trigger/set_gcp_trigger_enabled.py +0 -113
- windmill_api-1.542.3/windmill_api/api/git_sync/get_global_connected_repositories.py +0 -131
- windmill_api-1.542.3/windmill_api/api/job/cancel_selection.py +0 -164
- windmill_api-1.542.3/windmill_api/api/job/list_filtered_jobs_uuids.py +0 -633
- windmill_api-1.542.3/windmill_api/api/job/list_jobs.py +0 -677
- windmill_api-1.542.3/windmill_api/api/job/list_queue.py +0 -516
- windmill_api-1.542.3/windmill_api/api/job/openai_sync_flow_by_path.py +0 -146
- windmill_api-1.542.3/windmill_api/api/job/openai_sync_script_by_path.py +0 -155
- windmill_api-1.542.3/windmill_api/api/job/restart_flow_at_step.py +0 -201
- windmill_api-1.542.3/windmill_api/api/job/run_flow_by_path.py +0 -194
- windmill_api-1.542.3/windmill_api/api/job/run_flow_preview.py +0 -136
- windmill_api-1.542.3/windmill_api/api/job/run_flow_preview_and_wait_result.py +0 -107
- windmill_api-1.542.3/windmill_api/api/job/run_wait_result_flow_by_path.py +0 -146
- windmill_api-1.542.3/windmill_api/api/job/run_wait_result_script_by_path.py +0 -173
- windmill_api-1.542.3/windmill_api/api/job/run_wait_result_script_by_path_get.py +0 -171
- windmill_api-1.542.3/windmill_api/api/kafka_trigger/set_kafka_trigger_enabled.py +0 -113
- windmill_api-1.542.3/windmill_api/api/mqtt_trigger/set_mqtt_trigger_enabled.py +0 -113
- windmill_api-1.542.3/windmill_api/api/nats_trigger/set_nats_trigger_enabled.py +0 -113
- windmill_api-1.542.3/windmill_api/api/oidc/get_oidc_token.py +0 -101
- windmill_api-1.542.3/windmill_api/api/postgres_trigger/set_postgres_trigger_enabled.py +0 -113
- windmill_api-1.542.3/windmill_api/api/script/list_scripts.py +0 -417
- windmill_api-1.542.3/windmill_api/api/setting/create_ducklake_database.py +0 -95
- windmill_api-1.542.3/windmill_api/api/setting/databases_exist.py +0 -149
- windmill_api-1.542.3/windmill_api/api/sqs_trigger/set_sqs_trigger_enabled.py +0 -113
- windmill_api-1.542.3/windmill_api/api/teams/sync_teams.py +0 -131
- windmill_api-1.542.3/windmill_api/api/websocket_trigger/set_websocket_trigger_enabled.py +0 -113
- windmill_api-1.542.3/windmill_api/api/workspace/create_workspace_fork.py +0 -96
- windmill_api-1.542.3/windmill_api/api/workspace/delete_workspace.py +0 -93
- windmill_api-1.542.3/windmill_api/api/workspace/list_available_teams_channels.py +0 -157
- windmill_api-1.542.3/windmill_api/api/workspace/list_available_teams_ids.py +0 -157
- windmill_api-1.542.3/windmill_api/models/ai_agent.py +0 -103
- windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms.py +0 -104
- windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms_additional_property_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms_additional_property_type_0_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms_additional_property_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/ai_agent_input_transforms_additional_property_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item.py +0 -327
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_sleep_type_0_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_sleep_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend.py +0 -195
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_resume_form.py +0 -71
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_user_groups_required_type_0_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_suspend_user_groups_required_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_timeout_type_0_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/ai_agent_tools_item_timeout_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/ai_config.py +0 -125
- windmill_api-1.542.3/windmill_api/models/ai_config_code_completion_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/ai_config_default_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/ai_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/ai_provider_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/archive_script_by_hash_response_200.py +0 -372
- windmill_api-1.542.3/windmill_api/models/asset_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/audit_log.py +0 -133
- windmill_api-1.542.3/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_0.py +0 -75
- windmill_api-1.542.3/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_1.py +0 -75
- windmill_api-1.542.3/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_0.py +0 -75
- windmill_api-1.542.3/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_1.py +0 -75
- windmill_api-1.542.3/windmill_api/models/branch_all.py +0 -93
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item.py +0 -92
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item.py +0 -361
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend.py +0 -207
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one.py +0 -102
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item.py +0 -91
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item.py +0 -361
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend.py +0 -207
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item.py +0 -329
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend.py +0 -199
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend_resume_form.py +0 -73
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/branch_one_default_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/completed_job.py +0 -398
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_failure_module.py +0 -318
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_modules_item.py +0 -305
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_preprocessor_module.py +0 -317
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/completed_job_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/completed_job_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow.py +0 -176
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module.py +0 -361
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend.py +0 -207
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item.py +0 -344
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend.py +0 -205
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module.py +0 -375
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend.py +0 -211
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/create_account_json_body.py +0 -109
- windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body.py +0 -139
- windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_email_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body.py +0 -213
- windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_gcp_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body.py +0 -229
- windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_http_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item.py +0 -237
- windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_http_triggers_json_body_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body.py +0 -154
- windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_kafka_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body.py +0 -221
- windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_mqtt_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body.py +0 -168
- windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_nats_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body.py +0 -174
- windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body_retry.py +0 -111
- windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_postgres_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_schedule_json_body.py +0 -299
- windmill_api-1.542.3/windmill_api/models/create_schedule_json_body_retry.py +0 -108
- windmill_api-1.542.3/windmill_api/models/create_schedule_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_schedule_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_schedule_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_script_json_body.py +0 -329
- windmill_api-1.542.3/windmill_api/models/create_script_json_body_assets_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body.py +0 -164
- windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_sqs_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body.py +0 -264
- windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/create_websocket_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/create_workspace_fork.py +0 -90
- windmill_api-1.542.3/windmill_api/models/create_workspace_fork_json_body.py +0 -90
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200.py +0 -404
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module.py +0 -333
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item.py +0 -324
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module.py +0 -327
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow.py +0 -188
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module.py +0 -399
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item.py +0 -395
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module.py +0 -404
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend.py +0 -217
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/delete_script_by_hash_response_200.py +0 -372
- windmill_api-1.542.3/windmill_api/models/ducklake_settings_ducklakes_additional_property.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_copilot_config_json_body.py +0 -129
- windmill_api-1.542.3/windmill_api/models/edit_copilot_config_json_body_code_completion_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/edit_copilot_config_json_body_default_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_email_trigger.py +0 -137
- windmill_api-1.542.3/windmill_api/models/edit_email_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/edit_email_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_email_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_email_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/edit_http_trigger.py +0 -227
- windmill_api-1.542.3/windmill_api/models/edit_http_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/edit_http_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_http_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_http_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger.py +0 -143
- windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_kafka_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage.py +0 -128
- windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger.py +0 -215
- windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_mqtt_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/edit_nats_trigger.py +0 -159
- windmill_api-1.542.3/windmill_api/models/edit_nats_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/edit_nats_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_nats_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_nats_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger.py +0 -168
- windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_postgres_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/edit_schedule.py +0 -270
- windmill_api-1.542.3/windmill_api/models/edit_schedule_retry.py +0 -108
- windmill_api-1.542.3/windmill_api/models/edit_schedule_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_schedule_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_schedule_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger.py +0 -162
- windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_sqs_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger.py +0 -238
- windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/edit_websocket_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/email_trigger.py +0 -177
- windmill_api-1.542.3/windmill_api/models/email_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/email_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/email_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/email_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/execute_component_json_body.py +0 -171
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0.py +0 -418
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module.py +0 -332
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item.py +0 -321
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module.py +0 -324
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow.py +0 -188
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module.py +0 -399
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1.py +0 -434
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module.py +0 -332
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item.py +0 -321
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module.py +0 -324
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow.py +0 -188
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module.py +0 -399
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module.py +0 -325
- windmill_api-1.542.3/windmill_api/models/flow_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/flow_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_suspend.py +0 -183
- windmill_api-1.542.3/windmill_api/models/flow_module_suspend_resume_form.py +0 -71
- windmill_api-1.542.3/windmill_api/models/flow_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_module_suspend_user_groups_required_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_module_suspend_user_groups_required_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_module_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_module_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_0_assets_item.py +0 -102
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_0_assets_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_iterator_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_iterator_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_7.py +0 -70
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_input_transforms_additional_property_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_input_transforms_additional_property_type_0_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_input_transforms_additional_property_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_input_transforms_additional_property_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_sleep_type_0_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_sleep_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_user_groups_required_type_0_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_suspend_user_groups_required_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_timeout_type_0_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_module_value_2_type_8_tools_item_timeout_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_preview.py +0 -110
- windmill_api-1.542.3/windmill_api/models/flow_preview_restarted_from.py +0 -74
- windmill_api-1.542.3/windmill_api/models/flow_preview_value.py +0 -176
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module.py +0 -338
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_retry.py +0 -111
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend.py +0 -203
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_failure_module_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item.py +0 -333
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_retry.py +0 -109
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend.py +0 -203
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_modules_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module.py +0 -369
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend.py +0 -209
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_status_failure_module.py +0 -298
- windmill_api-1.542.3/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/flow_status_module.py +0 -278
- windmill_api-1.542.3/windmill_api/models/flow_status_module_agent_actions_item_type_1.py +0 -60
- windmill_api-1.542.3/windmill_api/models/flow_status_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_status_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/flow_status_modules_item.py +0 -284
- windmill_api-1.542.3/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/flow_status_preprocessor_module.py +0 -295
- windmill_api-1.542.3/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_failure_module_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_modules_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/flow_value_preprocessor_module_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/forloop_flow.py +0 -143
- windmill_api-1.542.3/windmill_api/models/forloop_flow_iterator_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/forloop_flow_iterator_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item.py +0 -329
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend.py +0 -199
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/forloop_flow_modules_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/gcp_trigger.py +0 -259
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_data.py +0 -212
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_data_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_data_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_data_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_data_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/gcp_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_audit_log_response_200.py +0 -133
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200.py +0 -402
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_failure_module.py +0 -332
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_modules_item.py +0 -321
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module.py +0 -324
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow.py +0 -188
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module.py +0 -401
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_copilot_info_response_200.py +0 -129
- windmill_api-1.542.3/windmill_api/models/get_copilot_info_response_200_code_completion_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/get_copilot_info_response_200_default_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200.py +0 -180
- windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_email_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200.py +0 -229
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value.py +0 -182
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft.py +0 -241
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value.py +0 -190
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module.py +0 -410
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_resume_form.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item.py +0 -404
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend.py +0 -217
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module.py +0 -412
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_constant.py +0 -68
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_retry_retry_if.py +0 -60
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_resume_form.py +0 -79
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_deployment_status_response_200.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200.py +0 -229
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value.py +0 -182
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200.py +0 -260
- windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_gcp_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_global_connected_repositories_response_200_item.py +0 -104
- windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200.py +0 -267
- windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_http_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow.py +0 -99
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value.py +0 -188
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item.py +0 -395
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module.py +0 -401
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0.py +0 -416
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module.py +0 -330
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item.py +0 -321
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module.py +0 -324
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow.py +0 -182
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1.py +0 -432
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module.py +0 -330
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item.py +0 -321
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module.py +0 -324
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow.py +0 -182
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_failure_module.py +0 -330
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_modules_item.py +0 -321
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module.py +0 -324
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200.py +0 -226
- windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_kafka_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_large_file_storage_config_response_200.py +0 -124
- windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200.py +0 -293
- windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_mqtt_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200.py +0 -240
- windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_nats_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200.py +0 -227
- windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200_retry.py +0 -111
- windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_postgres_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_runnable_response_200.py +0 -103
- windmill_api-1.542.3/windmill_api/models/get_schedule_response_200.py +0 -346
- windmill_api-1.542.3/windmill_api/models/get_schedule_response_200_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/get_schedule_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_schedule_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_schedule_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_script_by_hash_response_200.py +0 -372
- windmill_api-1.542.3/windmill_api/models/get_script_by_path_response_200.py +0 -372
- windmill_api-1.542.3/windmill_api/models/get_script_by_path_with_draft_response_200.py +0 -358
- windmill_api-1.542.3/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/get_script_by_path_with_draft_response_200_draft.py +0 -339
- windmill_api-1.542.3/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/get_script_deployment_status_response_200.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_settings_response_200.py +0 -391
- windmill_api-1.542.3/windmill_api/models/get_settings_response_200_ai_config.py +0 -133
- windmill_api-1.542.3/windmill_api/models/get_settings_response_200_ai_config_code_completion_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/get_settings_response_200_ai_config_default_model_provider.py +0 -17
- windmill_api-1.542.3/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_settings_response_200_large_file_storage.py +0 -124
- windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200.py +0 -236
- windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_sqs_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py +0 -434
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module.py +0 -338
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item.py +0 -327
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module.py +0 -336
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_iterator.py +0 -79
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow.py +0 -190
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module.py +0 -410
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -79
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item.py +0 -410
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module.py +0 -414
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -68
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -60
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -81
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -73
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -73
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1.py +0 -450
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module.py +0 -338
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item.py +0 -327
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module.py +0 -336
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_iterator.py +0 -79
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow.py +0 -190
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module.py +0 -410
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -79
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item.py +0 -410
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -77
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module.py +0 -414
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -68
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -60
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -81
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -73
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -73
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/get_tutorial_progress_response_200.py +0 -58
- windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200.py +0 -336
- windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/get_websocket_trigger_response_200_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/github_installations_item.py +0 -98
- windmill_api-1.542.3/windmill_api/models/global_user_info.py +0 -123
- windmill_api-1.542.3/windmill_api/models/global_whoami_response_200.py +0 -123
- windmill_api-1.542.3/windmill_api/models/http_trigger.py +0 -264
- windmill_api-1.542.3/windmill_api/models/http_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/http_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/http_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/http_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/identity.py +0 -70
- windmill_api-1.542.3/windmill_api/models/input_transform_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/input_transform_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/javascript_transform.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/job_type_0_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/job_type_0_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/job_type_1_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/job_type_1_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/kafka_trigger.py +0 -223
- windmill_api-1.542.3/windmill_api/models/kafka_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/kafka_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/kafka_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/kafka_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/large_file_storage.py +0 -120
- windmill_api-1.542.3/windmill_api/models/list_assets_by_usage_response_200_item_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/list_assets_response_200_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/list_audit_logs_response_200_item.py +0 -133
- windmill_api-1.542.3/windmill_api/models/list_available_teams_channels_response_200_item.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_available_teams_ids_response_200_item.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item.py +0 -406
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module.py +0 -336
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item.py +0 -324
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module.py +0 -329
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow.py +0 -190
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module.py +0 -401
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item.py +0 -399
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module.py +0 -410
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -73
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -73
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item.py +0 -184
- windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_email_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py +0 -436
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module.py +0 -340
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item.py +0 -329
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module.py +0 -338
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -70
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_iterator.py +0 -79
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow.py +0 -190
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module.py +0 -410
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_constant.py +0 -68
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_retry_retry_if.py +0 -60
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -79
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item.py +0 -410
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -79
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module.py +0 -418
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry.py +0 -127
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -68
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -60
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend.py +0 -216
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -81
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.py +0 -452
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module.py +0 -340
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item.py +0 -329
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module.py +0 -338
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -70
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_iterator.py +0 -79
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow.py +0 -190
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module.py +0 -410
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_constant.py +0 -68
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_retry_retry_if.py +0 -60
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -79
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item.py +0 -410
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -79
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module.py +0 -418
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry.py +0 -127
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -68
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -84
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -60
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend.py +0 -216
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -81
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item.py +0 -270
- windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_gcp_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item.py +0 -275
- windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item_retry.py +0 -117
- windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_http_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0.py +0 -420
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module.py +0 -333
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item.py +0 -323
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module.py +0 -327
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow.py +0 -188
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item.py +0 -395
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module.py +0 -404
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1.py +0 -436
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module.py +0 -333
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item.py +0 -323
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module.py +0 -327
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -64
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow.py +0 -188
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item.py +0 -395
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module.py +0 -404
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item.py +0 -230
- windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_kafka_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item.py +0 -299
- windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item_retry.py +0 -117
- windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_mqtt_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item.py +0 -244
- windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item_retry.py +0 -117
- windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_nats_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item.py +0 -231
- windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_postgres_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item.py +0 -418
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_failure_module.py +0 -330
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_modules_item.py +0 -321
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module.py +0 -324
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow.py +0 -186
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module.py +0 -393
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module.py +0 -399
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item.py +0 -358
- windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item_retry.py +0 -109
- windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_schedules_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item.py +0 -393
- windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_schedules_with_jobs_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_scripts_response_200_item.py +0 -372
- windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item.py +0 -242
- windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_sqs_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_user_workspaces_response_200_workspaces_item.py +0 -127
- windmill_api-1.542.3/windmill_api/models/list_users_as_super_admin_response_200_item.py +0 -125
- windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item.py +0 -346
- windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/list_websocket_triggers_response_200_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/list_workers_response_200_item.py +0 -204
- windmill_api-1.542.3/windmill_api/models/mqtt_trigger.py +0 -288
- windmill_api-1.542.3/windmill_api/models/mqtt_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/mqtt_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/mqtt_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/mqtt_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/nats_trigger.py +0 -239
- windmill_api-1.542.3/windmill_api/models/nats_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/nats_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/nats_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/nats_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_email_trigger.py +0 -136
- windmill_api-1.542.3/windmill_api/models/new_email_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/new_email_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_email_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_email_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_http_trigger.py +0 -226
- windmill_api-1.542.3/windmill_api/models/new_http_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/new_http_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_http_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_http_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_kafka_trigger.py +0 -151
- windmill_api-1.542.3/windmill_api/models/new_kafka_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/new_kafka_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_kafka_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_kafka_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger.py +0 -216
- windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_mqtt_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_nats_trigger.py +0 -167
- windmill_api-1.542.3/windmill_api/models/new_nats_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/new_nats_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_nats_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_nats_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_postgres_trigger.py +0 -170
- windmill_api-1.542.3/windmill_api/models/new_postgres_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/new_postgres_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_postgres_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_postgres_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_schedule.py +0 -297
- windmill_api-1.542.3/windmill_api/models/new_schedule_retry.py +0 -108
- windmill_api-1.542.3/windmill_api/models/new_schedule_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_schedule_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_schedule_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_script.py +0 -329
- windmill_api-1.542.3/windmill_api/models/new_script_assets_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/new_script_with_draft.py +0 -354
- windmill_api-1.542.3/windmill_api/models/new_script_with_draft_assets_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/new_script_with_draft_draft.py +0 -329
- windmill_api-1.542.3/windmill_api/models/new_script_with_draft_draft_assets_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/new_sqs_trigger.py +0 -163
- windmill_api-1.542.3/windmill_api/models/new_sqs_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/new_sqs_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_sqs_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_sqs_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/new_websocket_trigger.py +0 -241
- windmill_api-1.542.3/windmill_api/models/new_websocket_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/new_websocket_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/new_websocket_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/new_websocket_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow.py +0 -99
- windmill_api-1.542.3/windmill_api/models/open_flow_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/open_flow_value.py +0 -176
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module.py +0 -333
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend.py +0 -201
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_failure_module_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item.py +0 -333
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend.py +0 -199
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_modules_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module.py +0 -348
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend.py +0 -205
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path.py +0 -163
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value.py +0 -176
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module.py +0 -358
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend.py +0 -205
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item.py +0 -344
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend.py +0 -203
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module.py +0 -375
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend.py +0 -211
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/openai_sync_flow_by_path_json_body.py +0 -44
- windmill_api-1.542.3/windmill_api/models/openai_sync_script_by_path_json_body.py +0 -44
- windmill_api-1.542.3/windmill_api/models/path_flow.py +0 -81
- windmill_api-1.542.3/windmill_api/models/path_flow_input_transforms.py +0 -106
- windmill_api-1.542.3/windmill_api/models/path_flow_input_transforms_additional_property_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/path_flow_input_transforms_additional_property_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/path_script.py +0 -107
- windmill_api-1.542.3/windmill_api/models/path_script_input_transforms.py +0 -107
- windmill_api-1.542.3/windmill_api/models/path_script_input_transforms_additional_property_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/path_script_input_transforms_additional_property_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/postgres_trigger.py +0 -222
- windmill_api-1.542.3/windmill_api/models/postgres_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/postgres_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/postgres_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/postgres_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/queued_job.py +0 -414
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_failure_module.py +0 -314
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_failure_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_modules_item.py +0 -301
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_modules_item_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_preprocessor_module.py +0 -315
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1.py +0 -62
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_1_type.py +0 -8
- windmill_api-1.542.3/windmill_api/models/queued_job_flow_status_preprocessor_module_iterator.py +0 -77
- windmill_api-1.542.3/windmill_api/models/queued_job_job_kind.py +0 -22
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow.py +0 -176
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module.py +0 -338
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_retry.py +0 -113
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend.py +0 -203
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item.py +0 -333
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_retry.py +0 -109
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend.py +0 -203
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module.py +0 -369
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend.py +0 -209
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/raw_script.py +0 -169
- windmill_api-1.542.3/windmill_api/models/raw_script_assets_item.py +0 -102
- windmill_api-1.542.3/windmill_api/models/raw_script_assets_item_kind.py +0 -10
- windmill_api-1.542.3/windmill_api/models/raw_script_input_transforms.py +0 -106
- windmill_api-1.542.3/windmill_api/models/raw_script_input_transforms_additional_property_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/raw_script_input_transforms_additional_property_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/restart_flow_at_step_json_body.py +0 -44
- windmill_api-1.542.3/windmill_api/models/restarted_from.py +0 -74
- windmill_api-1.542.3/windmill_api/models/retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body.py +0 -114
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_restarted_from.py +0 -74
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value.py +0 -190
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module.py +0 -404
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item.py +0 -401
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module.py +0 -410
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry.py +0 -121
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_stop_after_all_iters_if.py +0 -78
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend.py +0 -215
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_resume_form.py +0 -79
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_resume_form_schema.py +0 -46
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -73
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -73
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body.py +0 -110
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_restarted_from.py +0 -74
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value.py +0 -180
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module.py +0 -393
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item.py +0 -387
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module.py +0 -395
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry.py +0 -119
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend.py +0 -213
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_0.py +0 -71
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_1.py +0 -71
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/schedule.py +0 -343
- windmill_api-1.542.3/windmill_api/models/schedule_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/schedule_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/schedule_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/schedule_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/schedule_w_jobs.py +0 -367
- windmill_api-1.542.3/windmill_api/models/schedule_w_jobs_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/schedule_w_jobs_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/schedule_w_jobs_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/schedule_w_jobs_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/script.py +0 -372
- windmill_api-1.542.3/windmill_api/models/set_gcp_trigger_enabled_json_body.py +0 -58
- windmill_api-1.542.3/windmill_api/models/set_kafka_trigger_enabled_json_body.py +0 -58
- windmill_api-1.542.3/windmill_api/models/set_mqtt_trigger_enabled_json_body.py +0 -58
- windmill_api-1.542.3/windmill_api/models/set_nats_trigger_enabled_json_body.py +0 -58
- windmill_api-1.542.3/windmill_api/models/set_postgres_trigger_enabled_json_body.py +0 -58
- windmill_api-1.542.3/windmill_api/models/set_sqs_trigger_enabled_json_body.py +0 -58
- windmill_api-1.542.3/windmill_api/models/set_websocket_trigger_enabled_json_body.py +0 -58
- windmill_api-1.542.3/windmill_api/models/sqs_trigger.py +0 -235
- windmill_api-1.542.3/windmill_api/models/sqs_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/sqs_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/sqs_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/sqs_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/static_transform.py +0 -67
- windmill_api-1.542.3/windmill_api/models/stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/sync_teams_response_200_item.py +0 -87
- windmill_api-1.542.3/windmill_api/models/sync_teams_response_200_item_channels_item.py +0 -80
- windmill_api-1.542.3/windmill_api/models/trigger_extra_property.py +0 -117
- windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body.py +0 -140
- windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_email_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body.py +0 -213
- windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_gcp_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body.py +0 -230
- windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_http_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body.py +0 -146
- windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_kafka_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body.py +0 -220
- windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_mqtt_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body.py +0 -160
- windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_nats_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body.py +0 -172
- windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body_retry.py +0 -111
- windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_postgres_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_schedule_json_body.py +0 -270
- windmill_api-1.542.3/windmill_api/models/update_schedule_json_body_retry.py +0 -108
- windmill_api-1.542.3/windmill_api/models/update_schedule_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_schedule_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_schedule_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body.py +0 -163
- windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_sqs_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_tutorial_progress_json_body.py +0 -58
- windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body.py +0 -256
- windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body_retry.py +0 -115
- windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/update_websocket_trigger_json_body_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/upload_file_part.py +0 -65
- windmill_api-1.542.3/windmill_api/models/user_workspace_list_workspaces_item.py +0 -125
- windmill_api-1.542.3/windmill_api/models/websocket_trigger.py +0 -305
- windmill_api-1.542.3/windmill_api/models/websocket_trigger_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/websocket_trigger_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/websocket_trigger_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/websocket_trigger_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/whileloop_flow.py +0 -108
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item.py +0 -331
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_mock.py +0 -66
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_retry.py +0 -107
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_retry_constant.py +0 -66
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_retry_exponential.py +0 -82
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_retry_retry_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_skip_if.py +0 -58
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_sleep_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_sleep_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_stop_after_all_iters_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_stop_after_if.py +0 -76
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend.py +0 -199
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend_resume_form.py +0 -75
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend_resume_form_schema.py +0 -44
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_0.py +0 -69
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1.py +0 -69
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_timeout_type_0.py +0 -67
- windmill_api-1.542.3/windmill_api/models/whileloop_flow_modules_item_timeout_type_1.py +0 -67
- windmill_api-1.542.3/windmill_api/models/worker_ping.py +0 -204
- {windmill_api-1.542.3 → windmill_api-1.603.0}/LICENSE +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/README.md +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/blacklist_agent_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/create_agent_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/list_blacklisted_agent_tokens.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/agent_workers/remove_blacklist_agent_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/create_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/create_app_raw.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/custom_path_exists.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/delete_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/delete_s3_file_from_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/execute_component.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/exists_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_by_path_with_draft.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_by_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_history_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_latest_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_app_lite_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_hub_app_by_id.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_public_app_by_custom_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_public_app_by_secret.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_public_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/get_public_secret_of_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/list_app_paths_from_workspace_runnable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/list_apps.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/list_hub_apps.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/list_search_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/sign_s3_objects.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/update_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/update_app_history.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/update_app_raw.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/app/upload_s3_file_from_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/asset/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/asset/list_assets.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/asset/list_assets_by_usage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/audit/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/audit/get_audit_log.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/audit/list_audit_logs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/delete_capture.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/get_capture.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/get_capture_configs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/list_captures.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/move_captures_and_configs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/ping_capture_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/capture/set_capture_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/concurrency_groups/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/concurrency_groups/delete_concurrency_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/concurrency_groups/get_concurrency_key.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/concurrency_groups/list_concurrency_groups.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/delete_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/get_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/list_available_python_versions.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/list_configs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/list_worker_groups.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/native_kubernetes_autoscaling_healthcheck.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/config/update_config.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/draft → windmill_api-1.603.0/windmill_api/api/documentation}/__init__.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/email_trigger → windmill_api-1.603.0/windmill_api/api/draft}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/draft/create_draft.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/draft/delete_draft.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/favorite → windmill_api-1.603.0/windmill_api/api/email_trigger}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/create_email_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/delete_email_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/exists_email_local_part.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/exists_email_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/get_email_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/list_email_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/email_trigger/update_email_trigger.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/flow → windmill_api-1.603.0/windmill_api/api/favorite}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/favorite/star.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/favorite/unstar.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/folder → windmill_api-1.603.0/windmill_api/api/flow}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/archive_flow_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/create_flow.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/delete_flow_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/exists_flow_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_by_path_with_draft.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_deployment_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_history.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_flow_latest_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_hub_flow_by_id.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/get_triggers_count_of_flow.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_flow_paths.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_flow_paths_from_workspace_runnable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_hub_flows.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_search_flow.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/list_tokens_of_flow.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/toggle_workspace_error_handler_for_flow.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/flow/update_flow.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/gcp_trigger → windmill_api-1.603.0/windmill_api/api/flow_conversation}/__init__.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/git_sync → windmill_api-1.603.0/windmill_api/api/folder}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/add_owner_to_folder.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/create_folder.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/delete_folder.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/exists_folder.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/get_folder.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/get_folder_usage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/list_folder_names.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/list_folders.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/remove_owner_to_folder.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/folder/update_folder.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/granular_acl → windmill_api-1.603.0/windmill_api/api/gcp_trigger}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/create_gcp_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/delete_gcp_subscription.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/delete_gcp_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/exists_gcp_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/get_gcp_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/list_all_t_google_topic_subscriptions.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/list_gcp_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/list_google_topics.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/test_gcp_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/gcp_trigger/update_gcp_trigger.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/group → windmill_api-1.603.0/windmill_api/api/git_sync}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/git_sync/delete_from_workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/git_sync/export_installation.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/git_sync/import_installation.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/git_sync/install_from_workspace.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/helpers → windmill_api-1.603.0/windmill_api/api/granular_acl}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/granular_acl/add_granular_acls.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/granular_acl/get_granular_acls.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/granular_acl/remove_granular_acls.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/http_trigger → windmill_api-1.603.0/windmill_api/api/group}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/add_user_to_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/add_user_to_instance_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/create_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/create_instance_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/delete_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/delete_instance_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/export_instance_groups.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/get_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/get_instance_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/list_group_names.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/list_groups.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/list_instance_groups.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/list_instance_groups_with_workspaces.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/overwrite_instance_groups.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/remove_user_from_instance_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/remove_user_to_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/update_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/group/update_instance_group.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/index_search → windmill_api-1.603.0/windmill_api/api/helpers}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/dataset_storage_test_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/delete_s3_file.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/duckdb_connection_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/duckdb_connection_settings_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/file_download.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/file_download_parquet_as_csv.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/file_upload.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/list_stored_files.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_csv_preview.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_file_metadata.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_file_preview.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_parquet_preview.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/load_table_row_count.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/move_s3_file.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/polars_connection_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/polars_connection_settings_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/helpers/s_3_resource_info.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/input_ → windmill_api-1.603.0/windmill_api/api/http_trigger}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/create_http_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/create_http_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/delete_http_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/exists_http_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/exists_route.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/get_http_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/list_http_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/http_trigger/update_http_trigger.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/integration → windmill_api-1.603.0/windmill_api/api/index_search}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/index_search/clear_index.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/index_search/count_search_logs_index.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/index_search/search_jobs_index.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/index_search/search_logs_index.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/job → windmill_api-1.603.0/windmill_api/api/input_}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/create_input.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/delete_input.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/get_args_from_history_or_saved_input.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/get_input_history.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/list_inputs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/input_/update_input.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/kafka_trigger → windmill_api-1.603.0/windmill_api/api/integration}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/integration/list_hub_integrations.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/mcp → windmill_api-1.603.0/windmill_api/api/job}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/batch_re_run_jobs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/cancel_persistent_queued_jobs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/cancel_queued_job.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/cancel_suspended_job_get.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/cancel_suspended_job_post.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/count_completed_jobs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/count_jobs_by_tag.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/create_job_signature.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/delete_completed_job.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/force_cancel_queued_job.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_count.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_job.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_job_logs_tail.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_job_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_completed_job_result_maybe.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_db_clock.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_flow_debug_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_flow_user_state.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job_logs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job_updates.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_job_updates_sse.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_log_file_from_store.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_queue_count.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_queue_position.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_resume_urls.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_root_job_id.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_scheduled_for.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_slack_approval_payload.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_suspended_job_flow.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/get_teams_approval_payload.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/list_completed_jobs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/list_filtered_queue_uuids.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/list_selected_job_groups.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/result_by_id.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/resume_suspended_flow_as_owner.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/resume_suspended_job_get.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/resume_suspended_job_post.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_code_workflow_task.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_raw_script_dependencies.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_script_by_hash.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_script_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_script_preview.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/run_script_preview_and_wait_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/job/set_flow_user_state.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/metrics → windmill_api-1.603.0/windmill_api/api/kafka_trigger}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/create_kafka_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/delete_kafka_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/exists_kafka_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/get_kafka_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/list_kafka_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/test_kafka_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/kafka_trigger/update_kafka_trigger.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/mqtt_trigger → windmill_api-1.603.0/windmill_api/api/mcp}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mcp/list_mcp_tools.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/nats_trigger → windmill_api-1.603.0/windmill_api/api/metrics}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/metrics/get_job_metrics.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/metrics/get_job_progress.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/metrics/set_job_progress.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/oauth → windmill_api-1.603.0/windmill_api/api/mqtt_trigger}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/create_mqtt_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/delete_mqtt_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/exists_mqtt_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/get_mqtt_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/list_mqtt_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/test_mqtt_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/mqtt_trigger/update_mqtt_trigger.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/oidc → windmill_api-1.603.0/windmill_api/api/nats_trigger}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/create_nats_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/delete_nats_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/exists_nats_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/get_nats_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/list_nats_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/test_nats_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/nats_trigger/update_nats_trigger.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/openapi → windmill_api-1.603.0/windmill_api/api/oauth}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/connect_callback.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/connect_client_credentials.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/connect_slack_callback.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/connect_slack_callback_instance.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/create_account.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/disconnect_account.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/disconnect_slack.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/disconnect_teams.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/get_o_auth_connect.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/list_o_auth_connects.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/list_o_auth_logins.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/oauth/refresh_token.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/postgres_trigger → windmill_api-1.603.0/windmill_api/api/oidc}/__init__.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/raw_app → windmill_api-1.603.0/windmill_api/api/openapi}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/openapi/download_openapi_spec.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/openapi/generate_openapi_spec.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/resource → windmill_api-1.603.0/windmill_api/api/postgres_trigger}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/create_postgres_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/create_postgres_replication_slot.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/create_postgres_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/create_template_script.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/delete_postgres_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/delete_postgres_replication_slot.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/delete_postgres_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/exists_postgres_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/get_postgres_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/get_postgres_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/get_postgres_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/get_template_script.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/is_valid_postgres_configuration.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/list_postgres_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/list_postgres_replication_slot.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/list_postgres_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/test_postgres_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/update_postgres_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/postgres_trigger/update_postgres_trigger.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/schedule → windmill_api-1.603.0/windmill_api/api/raw_app}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/create_raw_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/delete_raw_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/exists_raw_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/get_raw_app_data.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/list_raw_apps.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/raw_app/update_raw_app.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/script → windmill_api-1.603.0/windmill_api/api/resource}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/create_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/create_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/delete_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/delete_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/delete_resources_bulk.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/exists_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/exists_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/file_resource_type_to_file_ext_map.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/get_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/get_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/get_resource_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/get_resource_value_interpolated.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_resource_names.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_resource_type_names.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/list_search_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/query_resource_types.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/update_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/update_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/resource/update_resource_value.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/service_logs → windmill_api-1.603.0/windmill_api/api/schedule}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/create_schedule.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/delete_schedule.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/exists_schedule.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/get_schedule.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/list_schedules.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/list_schedules_with_jobs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/preview_schedule.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/set_default_error_or_recovery_handler.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/set_schedule_enabled.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/schedule/update_schedule.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/setting → windmill_api-1.603.0/windmill_api/api/script}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/archive_script_by_hash.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/archive_script_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/create_script.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/delete_script_by_hash.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/delete_script_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/delete_scripts_bulk.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/exists_script_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_hub_script_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_hub_script_content_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_by_hash.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_by_path_with_draft.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_deployment_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_history_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_script_latest_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_top_hub_scripts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/get_triggers_count_of_script.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/list_script_paths.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/list_script_paths_from_workspace_runnable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/list_search_script.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/list_tokens_of_script.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/query_hub_scripts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/raw_script_by_hash.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/raw_script_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/raw_script_by_path_tokened.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/toggle_workspace_error_handler_for_script.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/script/update_script_history.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/settings → windmill_api-1.603.0/windmill_api/api/service_logs}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/service_logs/get_log_file.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/service_logs/list_log_files.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/sqs_trigger → windmill_api-1.603.0/windmill_api/api/setting}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/acknowledge_all_critical_alerts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/acknowledge_critical_alert.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/create_customer_portal_session.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_critical_alerts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_global.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_latest_key_renewal_attempt.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_local.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/get_secondary_storage_names.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/list_global_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/renew_license_key.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/send_stats.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/set_global.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_critical_channels.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_license_key.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_metadata.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_object_storage_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/test_smtp.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/workspace_acknowledge_all_critical_alerts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/workspace_acknowledge_critical_alert.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/workspace_get_critical_alerts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/setting/workspace_mute_critical_alerts_ui.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/teams → windmill_api-1.603.0/windmill_api/api/settings}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/settings/backend_uptodate.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/settings/backend_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/settings/get_license_id.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/settings/get_open_api_yaml.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/token → windmill_api-1.603.0/windmill_api/api/sqs_trigger}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/create_sqs_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/delete_sqs_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/exists_sqs_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/get_sqs_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/list_sqs_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/test_sqs_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/sqs_trigger/update_sqs_trigger.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/user → windmill_api-1.603.0/windmill_api/api/teams}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/teams/send_message_to_conversation.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/variable → windmill_api-1.603.0/windmill_api/api/token}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/token/list_available_scopes.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/websocket_trigger → windmill_api-1.603.0/windmill_api/api/trigger}/__init__.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/worker → windmill_api-1.603.0/windmill_api/api/user}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/accept_invite.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/create_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/create_token_impersonate.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/create_user_globally.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/decline_invite.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/delete_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/delete_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/exists_email.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_current_email.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_runnable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_tutorial_progress.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_usage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/get_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_user_delete.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_user_rename.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_user_update.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_username_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_users_export.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_users_overwrite.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/global_whoami.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/is_owner_of_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/leave_instance.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_tokens.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_usernames.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_users.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_users_as_super_admin.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_users_usage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/list_workspace_invites.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/login.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/login_with_oauth.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/logout.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/refresh_user_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/set_login_type_for_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/set_password.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/set_password_for_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/update_tutorial_progress.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/update_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/username_to_email.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/whoami.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/user/whois.py +0 -0
- {windmill_api-1.542.3/windmill_api/api/workspace → windmill_api-1.603.0/windmill_api/api/variable}/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/create_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/delete_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/delete_variables_bulk.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/encrypt_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/exists_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/get_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/get_variable_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/list_contextual_variables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/list_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/variable/update_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/create_websocket_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/delete_websocket_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/exists_websocket_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/get_websocket_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/list_websocket_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/test_websocket_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/websocket_trigger/update_websocket_trigger.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/exists_workers_with_tags.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/ge_default_tags.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/get_counts_of_jobs_waiting_per_tag.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/get_counts_of_running_jobs_per_tag.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/get_custom_tags.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/get_queue_metrics.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/is_default_tags_per_workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/worker/list_workers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/add_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/archive_workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/change_workspace_color.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/change_workspace_id.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/change_workspace_name.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/connect_teams.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/create_workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/delete_git_sync_repository.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/delete_invite.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_auto_invite.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_copilot_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_default_scripts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_deploy_to.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_ducklake_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_error_handler.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_git_sync_repository.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_instance_groups.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_large_file_storage_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_slack_command.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_teams_command.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_webhook.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_workspace_default_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_workspace_deploy_ui_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/edit_workspace_git_sync_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/exists_username.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/exists_workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_copilot_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_default_scripts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_deploy_to.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_github_app_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_is_premium.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_large_file_storage_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_premium_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_threshold_alert.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_used_triggers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_workspace_default_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_workspace_encryption_key.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_workspace_name.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/get_workspace_usage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/invite_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/is_domain_allowed.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/leave_workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_ducklakes.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_pending_invites.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_user_workspaces.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_workspaces.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/list_workspaces_as_super_admin.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/run_slack_message_test_job.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/run_teams_message_test_job.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/set_environment_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/set_threshold_alert.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/set_workspace_encryption_key.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/unarchive_workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/api/workspace/update_operator_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/client.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/errors.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/__init__.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/accept_invite_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_granular_acls_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_granular_acls_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_owner_to_folder_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_user_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_user_to_group_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/add_user_to_instance_group_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_agent_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_code_completion_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_custom_prompts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_default_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_providers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_config_providers_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_provider_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ai_provider_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/alert.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_history.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/app_with_last_version_w_draft_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_flow_by_path_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_script_by_hash_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_script_by_hash_response_200_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_script_by_hash_response_200_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/archive_script_by_hash_response_200_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/asset.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/asset_usage_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/asset_usage_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/audit_log_action_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/audit_log_operation.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/audit_log_parameters.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/autoscaling_event.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/aws_auth_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_flow_options_by_path_additional_property_input_transforms_additional_property_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/batch_re_run_jobs_json_body_script_options_by_path_additional_property_input_transforms_additional_property_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/blacklist_agent_token_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_branches_item_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_all_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_branches_item_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_default_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/branch_one_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/cancel_persistent_queued_jobs_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/cancel_queued_job_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/cancel_suspended_job_post_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/capture.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/capture_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/capture_config_trigger_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/capture_trigger_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/change_workspace_color_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/change_workspace_id_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/change_workspace_name_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/channel_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/clear_index_idx_name.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/completed_job_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/concurrency_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/config_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/configs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/configs_alerts_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_callback_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_callback_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_client_credentials_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_client_credentials_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_slack_callback_instance_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_slack_callback_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/connect_teams_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/contextual_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/count_jobs_by_tag_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/count_search_logs_index_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/count_search_logs_index_response_200_count_per_host.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_agent_token_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_json_body_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_app_raw_multipart_data_app_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_draft_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_draft_json_body_typ.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_email_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_flow_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_folder_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_gcp_trigger_json_body_delivery_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_gcp_trigger_json_body_delivery_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_gcp_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_gcp_trigger_json_body_subscription_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_group_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_trigger_json_body_authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_trigger_json_body_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_trigger_json_body_static_asset_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_triggers_json_body_item_authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_triggers_json_body_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_triggers_json_body_item_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_http_triggers_json_body_item_static_asset_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input_json_body_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_input_runnable_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_instance_group_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_kafka_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_client_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_subscribe_topics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_subscribe_topics_item_qos.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_v3_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_mqtt_trigger_json_body_v5_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_nats_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_publication_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_publication_json_body_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_publication_json_body_table_to_track_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_replication_slot_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_trigger_json_body_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_trigger_json_body_publication_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_postgres_trigger_json_body_publication_table_to_track_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_raw_app_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_resource_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_resource_type_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_schedule_json_body_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_schedule_json_body_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_schedule_json_body_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_schedule_json_body_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_assets_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_assets_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_assets_item_alt_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_script_json_body_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_sqs_trigger_json_body_aws_auth_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_sqs_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_template_script_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_template_script_json_body_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_template_script_json_body_relations_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_template_script_json_body_relations_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_token_impersonate_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_token_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_user_globally_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_variable_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_websocket_trigger_json_body_url_runnable_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/create_workspace_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/critical_alert.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/decline_invite_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_completed_job_response_200_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_concurrency_group_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_draft_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_gcp_subscription.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_gcp_subscription_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_git_sync_repository_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_invite_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_postgres_replication_slot_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_resources_bulk_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_script_by_hash_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_script_by_hash_response_200_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_script_by_hash_response_200_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_script_by_hash_response_200_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_scripts_bulk_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delete_variables_bulk_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/delivery_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_http_route_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_info_contact.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_info_license.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_openapi_spec_format.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_webhook_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_webhook_filters_item_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/download_openapi_spec_json_body_webhook_filters_item_user_or_folder_regex.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_json_body_s3_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_v2_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/duckdb_connection_settings_v2_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings_ducklakes.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings_ducklakes_additional_property_catalog.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings_ducklakes_additional_property_catalog_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ducklake_settings_ducklakes_additional_property_storage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_auto_invite_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_code_completion_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_custom_prompts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_default_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_providers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_copilot_config_json_body_providers_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_default_scripts_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_deploy_to_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property_catalog.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property_catalog_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_ducklake_config_json_body_settings_ducklakes_additional_property_storage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_email_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_error_handler_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_error_handler_json_body_error_handler_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body_repository.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body_repository_exclude_types_override_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body_repository_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_git_sync_repository_json_body_repository_settings_include_type_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_http_trigger_authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_http_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_http_trigger_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_http_trigger_static_asset_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_instance_groups_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_instance_groups_json_body_roles.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_kafka_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_secondary_storage_additional_property_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_client_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_subscribe_topics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_subscribe_topics_item_qos.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_v3_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_mqtt_trigger_v5_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_nats_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_postgres_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_postgres_trigger_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_postgres_trigger_publication_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_postgres_trigger_publication_table_to_track_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_schedule_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_schedule_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_schedule_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_schedule_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_slack_command_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_sqs_trigger_aws_auth_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_sqs_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_teams_command_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_webhook_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_initial_messages_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1_runnable_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_websocket_trigger_url_runnable_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_default_app_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_deploy_ui_settings_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_deploy_ui_settings_json_body_deploy_ui_settings_include_type_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_exclude_types_override_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_git_sync_config_json_body_git_sync_settings_repositories_item_settings_include_type_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/edit_workspace_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/email_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/email_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/endpoint_tool.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/endpoint_tool_body_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/endpoint_tool_path_params_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/endpoint_tool_query_params_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/error_handler.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/execute_component_json_body_force_viewer_one_of_fields.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/execute_component_json_body_force_viewer_static_fields.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/execute_component_json_body_raw_code.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_email_local_part_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_route_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_route_json_body_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_username_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_workers_with_tags_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exists_workspace_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/export_installation_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/export_instance_groups_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exported_instance_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/exported_user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_0_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_jobs_item_type_1_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extended_jobs_obscured_jobs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/file_upload_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_metadata.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_metadata_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_assets_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_assets_item_alt_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_input_transforms_additional_property_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_1_input_transforms_additional_property_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_2_input_transforms_additional_property_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_2_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_iterator_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_iterator_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_3_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_4_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_branches_item_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_default_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_5_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_branches_item_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_6_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_7_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_module_value_2_type_8_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_preview_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/flow_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/folder.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/folder_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/force_cancel_queued_job_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_iterator_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_iterator_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/forloop_flow_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_data_delivery_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_data_delivery_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_data_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_data_subscription_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_delivery_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_delivery_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/gcp_trigger_subscription_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_http_route_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_info_contact.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_info_license.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_http_route_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_info_contact.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_info_license.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_openapi_spec_format.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_json_body_webhook_filters_item_user_or_folder_regex.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_openapi_spec_format.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_webhook_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_webhook_filters_item_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/generate_openapi_spec_webhook_filters_item_user_or_folder_regex.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_all_topic_subscription.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_response_200_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_path_with_draft_response_200_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_by_version_response_200_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_history_by_path_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_latest_version_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_app_lite_by_path_response_200_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_audit_log_response_200_action_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_audit_log_response_200_operation.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_audit_log_response_200_parameters.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_configs_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_configs_response_200_item_trigger_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_configs_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_capture_response_200_trigger_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_count_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_response_200_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_completed_job_result_maybe_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_config_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_config_response_200_alerts_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_code_completion_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_custom_prompts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_default_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_providers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_copilot_info_response_200_providers_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_counts_of_jobs_waiting_per_tag_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_counts_of_running_jobs_per_tag_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_critical_alerts_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_critical_alerts_response_200_alerts_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_default_scripts_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_deploy_to_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_email_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_email_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_response_200_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_by_path_with_draft_response_200_draft_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_history_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_latest_version_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_flow_version_response_200_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_folder_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_folder_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_folder_usage_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_delivery_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_delivery_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_gcp_trigger_response_200_subscription_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_github_app_token_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_github_app_token_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_global_connected_repositories_response_200_item_repositories_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_granular_acls_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_granular_acls_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_group_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_group_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_http_trigger_response_200_static_asset_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_app_by_id_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_app_by_id_response_200_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_flow_by_id_response_200_flow_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_hub_script_by_path_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_input_history_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_input_history_runnable_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_instance_group_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200_metrics_metadata_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200_scalar_metrics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200_timeseries_metrics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_metrics_response_200_timeseries_metrics_item_values_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_0_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_response_200_type_1_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_job_updates_response_200_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_kafka_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_kafka_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_large_file_storage_config_response_200_secondary_storage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_large_file_storage_config_response_200_secondary_storage_additional_property_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_large_file_storage_config_response_200_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_latest_key_renewal_attempt_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_client_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_subscribe_topics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200_subscribe_topics_item_qos.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200v3_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_mqtt_trigger_response_200v5_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_nats_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_nats_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_o_auth_connect_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_o_auth_connect_response_200_extra_params.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_publication_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_publication_response_200_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_publication_response_200_table_to_track_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_postgres_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_premium_info_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_custom_path_response_200_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_public_app_by_secret_response_200_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_queue_count_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_queue_metrics_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_queue_metrics_response_200_item_values_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_queue_position_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_resource_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_resource_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_resource_type_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_resume_urls_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_schedule_response_200_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_hash_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_hash_response_200_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_hash_response_200_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_hash_response_200_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_response_200_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_response_200_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_response_200_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_assets_item_alt_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_assets_item_alt_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_draft_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_by_path_with_draft_response_200_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_history_by_path_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_script_latest_version_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_code_completion_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_custom_prompts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_default_model.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_providers.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ai_config_providers_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_auto_add_instance_groups_roles.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_default_scripts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_deploy_ui.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_deploy_ui_include_type_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake_ducklakes.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property_catalog.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property_catalog_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_ducklake_ducklakes_additional_property_storage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_error_handler_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync_repositories_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync_repositories_item_exclude_types_override_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync_repositories_item_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_git_sync_repositories_item_settings_include_type_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_large_file_storage_secondary_storage_additional_property_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_large_file_storage_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_settings_response_200_operator_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_sqs_trigger_response_200_aws_auth_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_sqs_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_sqs_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_0_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_suspended_job_flow_response_200_job_type_1_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_threshold_alert_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_top_hub_scripts_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_top_hub_scripts_response_200_asks_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_top_hub_scripts_response_200_asks_item_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_triggers_count_of_flow_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_triggers_count_of_flow_response_200_primary_schedule.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_triggers_count_of_script_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_triggers_count_of_script_response_200_primary_schedule.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_used_triggers_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_user_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_user_response_200_added_via.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_user_response_200_added_via_source.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_variable_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_variable_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_1_runnable_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_1_runnable_result_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_websocket_trigger_response_200_url_runnable_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_workspace_default_app_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/get_workspace_encryption_key_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_repository_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_repository_settings_exclude_types_override_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_repository_settings_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_repository_settings_settings_include_type_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/git_sync_object_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/github_installations_item_repositories_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_setting.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_setting_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_user_info_login_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_user_rename_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_user_update_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_username_info_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_username_info_response_200_workspace_usernames_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_users_export_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_users_overwrite_json_body_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/global_whoami_response_200_login_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/group_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/http_trigger_static_asset_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/hub_script_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/identity_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/import_installation_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/input_.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/input_transform_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/input_transform_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/install_from_workspace_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/instance_group.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/instance_group_with_workspaces.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/instance_group_with_workspaces_workspaces_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/invite_user_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/javascript_transform_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_search_hit.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_0_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/job_type_1_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/kafka_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/kafka_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/large_file_storage_secondary_storage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/large_file_storage_secondary_storage_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/large_file_storage_secondary_storage_additional_property_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/large_file_storage_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_all_t_google_topic_subscriptions_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_app_paths_from_workspace_runnable_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_apps_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_apps_response_200_item_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_apps_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_json_body_usages_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_json_body_usages_item_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_response_200_item_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_by_usage_response_200_item_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item_metadata.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item_usages_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item_usages_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_assets_response_200_item_usages_item_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_audit_logs_action_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_audit_logs_response_200_item_action_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_audit_logs_response_200_item_operation.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_audit_logs_response_200_item_parameters.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_autoscaling_events_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_available_scopes_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_available_scopes_response_200_item_scopes_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_blacklisted_agent_tokens_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_captures_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_captures_response_200_item_trigger_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_captures_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_captures_trigger_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_completed_jobs_response_200_item_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_concurrency_groups_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_configs_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_configs_response_200_item_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_contextual_variables_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_email_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_email_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_extended_jobs_response_200_obscured_jobs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_flow_paths_from_workspace_runnable_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_flows_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_folders_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_folders_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_delivery_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_delivery_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_gcp_triggers_response_200_item_subscription_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_global_settings_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_global_settings_response_200_item_value.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_groups_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_groups_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_http_triggers_response_200_item_static_asset_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_apps_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_apps_response_200_apps_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_flows_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_flows_response_200_flows_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_hub_integrations_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_inputs_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_inputs_runnable_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_instance_groups_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_instance_groups_with_workspaces_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_instance_groups_with_workspaces_response_200_item_workspaces_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_0_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_jobs_response_200_item_type_1_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_kafka_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_kafka_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_log_files_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mcp_tools_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mcp_tools_response_200_item_body_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mcp_tools_response_200_item_path_params_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mcp_tools_response_200_item_query_params_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_client_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_subscribe_topics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_subscribe_topics_item_qos.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_v3_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_mqtt_triggers_response_200_item_v5_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_nats_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_nats_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_o_auth_logins_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_o_auth_logins_response_200_oauth_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_pending_invites_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_postgres_replication_slot_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_postgres_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_postgres_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_queue_response_200_item_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_raw_apps_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_raw_apps_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_resource_names_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_resource_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_resource_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_resource_type_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_response_200_item_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_jobs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_schedules_with_jobs_response_200_item_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_scripts_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_scripts_response_200_item_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_scripts_response_200_item_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_scripts_response_200_item_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_search_app_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_search_flow_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_search_resource_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_search_script_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_sqs_triggers_response_200_item_aws_auth_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_sqs_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_sqs_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_stored_files_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_stored_files_response_200_windmill_large_files_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_tokens_of_flow_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_tokens_of_script_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_tokens_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_user_workspaces_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_user_workspaces_response_200_workspaces_item_operator_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_as_super_admin_response_200_item_login_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_response_200_item_added_via.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_response_200_item_added_via_source.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_users_usage_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_variable_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_variable_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_1_runnable_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_1_runnable_result_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_websocket_triggers_response_200_item_url_runnable_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_worker_groups_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_workspace_invites_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_workspaces_as_super_admin_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/list_workspaces_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_app_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_app_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_raw_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_raw_app_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_resource_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_variable.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/listable_variable_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/load_file_metadata_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/load_file_preview_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/load_file_preview_response_200_content_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/load_table_row_count_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/log_search_hit.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/login.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/login_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/login_with_oauth_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3_object.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3_object_props_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3_object_props_item_typ_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_3_object_props_item_typ_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_4.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_4_list_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_args_item_typ_type_4_list_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/main_arg_signature_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/metric_data_point.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/metric_metadata.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/move_captures_and_configs_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/move_captures_and_configs_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_client_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_qo_s.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_subscribe_topic.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_subscribe_topic_qos.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_client_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_subscribe_topics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_subscribe_topics_item_qos.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_v3_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_trigger_v5_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_v3_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/mqtt_v5_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/nats_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/nats_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_email_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_http_trigger_authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_http_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_http_trigger_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_http_trigger_static_asset_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_kafka_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_client_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_subscribe_topics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_subscribe_topics_item_qos.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_v3_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_mqtt_trigger_v5_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_nats_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_postgres_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_postgres_trigger_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_postgres_trigger_publication_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_postgres_trigger_publication_table_to_track_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_schedule_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_schedule_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_schedule_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_schedule_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_assets_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_assets_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_assets_item_alt_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_assets_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_assets_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_assets_item_alt_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_assets_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_assets_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_assets_item_alt_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_draft_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_script_with_draft_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_sqs_trigger_aws_auth_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_sqs_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_token_impersonate.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_initial_messages_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_initial_messages_item_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_initial_messages_item_type_1_runnable_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/new_websocket_trigger_url_runnable_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/obscured_job.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/open_flow_w_path_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_http_route_filters.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_spec_format.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_v3_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_v3_info_contact.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/openapi_v3_info_license.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/operator_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/overwrite_instance_groups_json_body_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_flow_input_transforms_additional_property_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_flow_input_transforms_additional_property_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_flow_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_script_input_transforms_additional_property_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_script_input_transforms_additional_property_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/path_script_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ping_capture_config_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/ping_capture_config_trigger_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_client_kwargs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_json_body_s3_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_response_200_client_kwargs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_response_200_storage_options.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_response_200s3_fs_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/polars_connection_settings_v2_response_200s3_fs_args_client_kwargs.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/postgres_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/postgres_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/preview_schedule_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/publication_data.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/publication_data_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/publication_data_table_to_track_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/push_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/query_hub_scripts_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/query_hub_scripts_response_200_item_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/query_resource_types_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_failure_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_modules_item_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_agent_actions_item_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_approvers_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_branch_chosen.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_branch_chosen_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_branchall.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_preprocessor_module_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_flow_status_retry.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_raw_flow_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/queued_job_workflow_as_code_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_assets_item_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_assets_item_alt_access_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_for_dependencies.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_for_dependencies_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_input_transforms_additional_property_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_input_transforms_additional_property_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/raw_script_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/refresh_token_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/relations.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/relations_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_blacklist_agent_token_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_granular_acls_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_granular_acls_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_owner_to_folder_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_user_from_instance_group_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/remove_user_to_group_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resource_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resume_suspended_flow_as_owner_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/resume_suspended_job_post_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_code_workflow_task_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_code_workflow_task_json_body_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_by_path_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_and_wait_result_json_body_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_failure_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_flow_preview_json_body_value_preprocessor_module_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_raw_script_dependencies_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_raw_script_dependencies_json_body_raw_scripts_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_raw_script_dependencies_json_body_raw_scripts_item_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_raw_script_dependencies_response_201.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_by_hash_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_by_path_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_and_wait_result_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_and_wait_result_json_body_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_and_wait_result_json_body_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_and_wait_result_json_body_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_json_body_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_json_body_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_script_preview_json_body_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_slack_message_test_job_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_teams_message_test_job_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_wait_result_flow_by_path_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/run_wait_result_script_by_path_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/runnable_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/s3_object.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/s3_resource.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/s3_resource_info_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/s3_resource_info_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/scalar_metric.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_jobs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/schedule_w_jobs_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/scope_definition.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/scope_domain.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/scope_domain_scopes_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_history.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_lang.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/script_schema.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_jobs_index_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_jobs_index_response_200_hits_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_jobs_index_response_200_index_metadata.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_logs_index_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/search_logs_index_response_200_hits_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/send_message_to_conversation_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/send_message_to_conversation_json_body_card_block.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_capture_config_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_capture_config_json_body_trigger_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_capture_config_json_body_trigger_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_capture_config_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_default_error_or_recovery_handler_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_default_error_or_recovery_handler_json_body_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_default_error_or_recovery_handler_json_body_handler_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_environment_variable_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_global_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_job_progress_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_login_type_for_user_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_password_for_user_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_password_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_schedule_enabled_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_threshold_alert_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/set_workspace_encryption_key_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sign_s3_objects_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sign_s3_objects_json_body_s3_objects_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sign_s3_objects_response_200_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/slack_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/slack_token_bot.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/slot.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/slot_list.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sqs_trigger_aws_auth_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sqs_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/sqs_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/star_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/star_json_body_favorite_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/static_transform_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/subscription_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/team_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/team_info_channels_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/teams_channel.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/template_script.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/template_script_language.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/template_script_relations_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/template_script_relations_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_critical_channels_json_body_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_gcp_connection_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_gcp_connection_json_body_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_kafka_connection_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_kafka_connection_json_body_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_license_key_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_mqtt_connection_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_mqtt_connection_json_body_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_nats_connection_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_nats_connection_json_body_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_object_storage_config_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_postgres_connection_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_smtp_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_smtp_json_body_smtp.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_sqs_connection_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_sqs_connection_json_body_connection.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_websocket_connection_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/test_websocket_connection_json_body_url_runnable_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/timeseries_metric.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/timeseries_metric_values_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/toggle_workspace_error_handler_for_flow_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/toggle_workspace_error_handler_for_script_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/token_response.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/trigger_extra_property_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/triggers_count.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/triggers_count_primary_schedule.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/truncated_token.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/unstar_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/unstar_json_body_favorite_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_history_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_json_body_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_allowed_s3_keys_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_execution_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_s3_inputs_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_triggerables.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_triggerables_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_triggerables_v2.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_app_raw_multipart_data_app_policy_triggerables_v2_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_email_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_flow_history_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_flow_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_folder_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_gcp_trigger_json_body_delivery_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_gcp_trigger_json_body_delivery_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_gcp_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_gcp_trigger_json_body_subscription_mode.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_group_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_http_trigger_json_body_authentication_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_http_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_http_trigger_json_body_http_method.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_http_trigger_json_body_static_asset_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_input.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_input_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_instance_group_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_kafka_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_client_version.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_subscribe_topics_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_subscribe_topics_item_qos.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_v3_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_mqtt_trigger_json_body_v5_config.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_nats_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_operator_settings_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_publication_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_publication_json_body_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_publication_json_body_table_to_track_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_trigger_json_body_publication.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_trigger_json_body_publication_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_postgres_trigger_json_body_publication_table_to_track_item_table_to_track_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_raw_app_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_resource_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_resource_type_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_resource_value_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_schedule_json_body_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_schedule_json_body_on_failure_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_schedule_json_body_on_recovery_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_schedule_json_body_on_success_extra_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_script_history_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_sqs_trigger_json_body_aws_auth_resource_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_sqs_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_user_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_variable_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/update_websocket_trigger_json_body_url_runnable_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/upload_s3_file_from_app_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_added_via.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_added_via_source.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_source.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_source_source.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_usage.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_workspace_list.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/user_workspace_list_workspaces_item_operator_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/webhook_filters.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/webhook_filters_runnable_kind.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/webhook_filters_user_or_folder_regex.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_error_handler_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_extra_perms.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_filters_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_message_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_message_type_1_runnable_result_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_messages_item_type_0.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_messages_item_type_1.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_messages_item_type_1_runnable_result.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/websocket_trigger_url_runnable_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_sleep_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_sleep_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_suspend_user_groups_required_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_timeout_type_0_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_modules_item_timeout_type_1_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whileloop_flow_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whoami_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whoami_response_200_added_via.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whoami_response_200_added_via_source.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whois_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whois_response_200_added_via.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/whois_response_200_added_via_source.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/windmill_file_metadata.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/windmill_file_preview.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/windmill_file_preview_content_type.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/windmill_large_file.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_status.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_status_record.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_status_record_additional_property.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_task.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workflow_task_args.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_default_scripts.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_deploy_ui_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_deploy_ui_settings_include_type_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_get_critical_alerts_response_200.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_get_critical_alerts_response_200_alerts_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings_repositories_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_override_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings_repositories_item_settings.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_git_sync_settings_repositories_item_settings_include_type_item.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_github_installation.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_info.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_invite.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/py.typed +0 -0
- {windmill_api-1.542.3 → windmill_api-1.603.0}/windmill_api/types.py +0 -0
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: windmill-api
|
|
3
|
+
Version: 1.603.0
|
|
4
|
+
Summary: A client library for accessing Windmill API
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Author: Ruben Fiszel
|
|
7
|
+
Author-email: ruben@windmill.dev
|
|
8
|
+
Requires-Python: >=3.8,<4.0
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Requires-Dist: attrs (>=21.3.0)
|
|
16
|
+
Requires-Dist: httpx (>=0.20.0,<0.25.0)
|
|
17
|
+
Requires-Dist: python-dateutil (>=2.8.0,<3.0.0)
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# Autogenerated Windmill OpenApi Client
|
|
21
|
+
This is the raw autogenerated api client. You are most likely more interested in [wmill](https://pypi.org/project/wmill/) which leverages this client to offer an user friendly experience. We use [this openapi python client generator](https://github.com/openapi-generators/openapi-python-client/)
|
|
22
|
+
|
|
23
|
+
# windmill-api
|
|
24
|
+
A client library for accessing Windmill API
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
First, create a client:
|
|
28
|
+
|
|
29
|
+
```python
|
|
30
|
+
from windmill_api import Client
|
|
31
|
+
|
|
32
|
+
client = Client(base_url="https://api.example.com")
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
from windmill_api import AuthenticatedClient
|
|
39
|
+
|
|
40
|
+
client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Now call your endpoint and use your models:
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
from windmill_api.models import MyDataModel
|
|
47
|
+
from windmill_api.api.my_tag import get_my_data_model
|
|
48
|
+
from windmill_api.types import Response
|
|
49
|
+
|
|
50
|
+
with client as client:
|
|
51
|
+
my_data: MyDataModel = get_my_data_model.sync(client=client)
|
|
52
|
+
# or if you need more info (e.g. status_code)
|
|
53
|
+
response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Or do the same thing with an async version:
|
|
57
|
+
|
|
58
|
+
```python
|
|
59
|
+
from windmill_api.models import MyDataModel
|
|
60
|
+
from windmill_api.api.my_tag import get_my_data_model
|
|
61
|
+
from windmill_api.types import Response
|
|
62
|
+
|
|
63
|
+
async with client as client:
|
|
64
|
+
my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
|
|
65
|
+
response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
|
|
69
|
+
|
|
70
|
+
```python
|
|
71
|
+
client = AuthenticatedClient(
|
|
72
|
+
base_url="https://internal_api.example.com",
|
|
73
|
+
token="SuperSecretToken",
|
|
74
|
+
verify_ssl="/path/to/certificate_bundle.pem",
|
|
75
|
+
)
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
You can also disable certificate validation altogether, but beware that **this is a security risk**.
|
|
79
|
+
|
|
80
|
+
```python
|
|
81
|
+
client = AuthenticatedClient(
|
|
82
|
+
base_url="https://internal_api.example.com",
|
|
83
|
+
token="SuperSecretToken",
|
|
84
|
+
verify_ssl=False
|
|
85
|
+
)
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Things to know:
|
|
89
|
+
1. Every path/method combo becomes a Python module with four functions:
|
|
90
|
+
1. `sync`: Blocking request that returns parsed data (if successful) or `None`
|
|
91
|
+
1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
|
|
92
|
+
1. `asyncio`: Like `sync` but async instead of blocking
|
|
93
|
+
1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
|
|
94
|
+
|
|
95
|
+
1. All path/query params, and bodies become method arguments.
|
|
96
|
+
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
|
|
97
|
+
1. Any endpoint which did not have a tag will be in `windmill_api.api.default`
|
|
98
|
+
|
|
99
|
+
## Advanced customizations
|
|
100
|
+
|
|
101
|
+
There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):
|
|
102
|
+
|
|
103
|
+
```python
|
|
104
|
+
from windmill_api import Client
|
|
105
|
+
|
|
106
|
+
def log_request(request):
|
|
107
|
+
print(f"Request event hook: {request.method} {request.url} - Waiting for response")
|
|
108
|
+
|
|
109
|
+
def log_response(response):
|
|
110
|
+
request = response.request
|
|
111
|
+
print(f"Response event hook: {request.method} {request.url} - Status {response.status_code}")
|
|
112
|
+
|
|
113
|
+
client = Client(
|
|
114
|
+
base_url="https://api.example.com",
|
|
115
|
+
httpx_args={"event_hooks": {"request": [log_request], "response": [log_response]}},
|
|
116
|
+
)
|
|
117
|
+
|
|
118
|
+
# Or get the underlying httpx client to modify directly with client.get_httpx_client() or client.get_async_httpx_client()
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
You can even set the httpx client directly, but beware that this will override any existing settings (e.g., base_url):
|
|
122
|
+
|
|
123
|
+
```python
|
|
124
|
+
import httpx
|
|
125
|
+
from windmill_api import Client
|
|
126
|
+
|
|
127
|
+
client = Client(
|
|
128
|
+
base_url="https://api.example.com",
|
|
129
|
+
)
|
|
130
|
+
# Note that base_url needs to be re-set, as would any shared cookies, headers, etc.
|
|
131
|
+
client.set_httpx_client(httpx.Client(base_url="https://api.example.com", proxies="http://localhost:8030"))
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "windmill-api"
|
|
3
|
+
version = "1.603.0"
|
|
4
|
+
description = "A client library for accessing Windmill API"
|
|
5
|
+
license = "Apache-2.0"
|
|
6
|
+
|
|
7
|
+
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
|
|
8
|
+
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
packages = [
|
|
11
|
+
{include = "windmill_api"},
|
|
12
|
+
]
|
|
13
|
+
include = ["CHANGELOG.md", "windmill_api/py.typed"]
|
|
14
|
+
|
|
15
|
+
[tool.poetry.dependencies]
|
|
16
|
+
python = "^3.8"
|
|
17
|
+
httpx = ">=0.20.0,<0.25.0"
|
|
18
|
+
attrs = ">=21.3.0"
|
|
19
|
+
python-dateutil = "^2.8.0"
|
|
20
|
+
|
|
21
|
+
[build-system]
|
|
22
|
+
requires = ["poetry-core>=1.0.0"]
|
|
23
|
+
build-backend = "poetry.core.masonry.api"
|
|
24
|
+
|
|
25
|
+
[tool.black]
|
|
26
|
+
line-length = 120
|
|
27
|
+
target_version = ['py38', 'py39', 'py310', 'py311']
|
|
28
|
+
exclude = '''
|
|
29
|
+
(
|
|
30
|
+
/(
|
|
31
|
+
| \.git
|
|
32
|
+
| \.venv
|
|
33
|
+
| \.mypy_cache
|
|
34
|
+
)/
|
|
35
|
+
)
|
|
36
|
+
'''
|
|
37
|
+
|
|
38
|
+
[tool.isort]
|
|
39
|
+
line_length = 120
|
|
40
|
+
profile = "black"
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Dict, Optional, Union, cast
|
|
3
|
+
|
|
4
|
+
import httpx
|
|
5
|
+
|
|
6
|
+
from ... import errors
|
|
7
|
+
from ...client import AuthenticatedClient, Client
|
|
8
|
+
from ...types import Response
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def _get_kwargs() -> Dict[str, Any]:
|
|
12
|
+
pass
|
|
13
|
+
|
|
14
|
+
return {
|
|
15
|
+
"method": "get",
|
|
16
|
+
"url": "/agent_workers/get_min_version",
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[str]:
|
|
21
|
+
if response.status_code == HTTPStatus.OK:
|
|
22
|
+
response_200 = cast(str, response.json())
|
|
23
|
+
return response_200
|
|
24
|
+
if client.raise_on_unexpected_status:
|
|
25
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
26
|
+
else:
|
|
27
|
+
return None
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[str]:
|
|
31
|
+
return Response(
|
|
32
|
+
status_code=HTTPStatus(response.status_code),
|
|
33
|
+
content=response.content,
|
|
34
|
+
headers=response.headers,
|
|
35
|
+
parsed=_parse_response(client=client, response=response),
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def sync_detailed(
|
|
40
|
+
*,
|
|
41
|
+
client: Union[AuthenticatedClient, Client],
|
|
42
|
+
) -> Response[str]:
|
|
43
|
+
"""get minimum worker version across all workers
|
|
44
|
+
|
|
45
|
+
Raises:
|
|
46
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
47
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
48
|
+
|
|
49
|
+
Returns:
|
|
50
|
+
Response[str]
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
kwargs = _get_kwargs()
|
|
54
|
+
|
|
55
|
+
response = client.get_httpx_client().request(
|
|
56
|
+
**kwargs,
|
|
57
|
+
)
|
|
58
|
+
|
|
59
|
+
return _build_response(client=client, response=response)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def sync(
|
|
63
|
+
*,
|
|
64
|
+
client: Union[AuthenticatedClient, Client],
|
|
65
|
+
) -> Optional[str]:
|
|
66
|
+
"""get minimum worker version across all workers
|
|
67
|
+
|
|
68
|
+
Raises:
|
|
69
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
70
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
71
|
+
|
|
72
|
+
Returns:
|
|
73
|
+
str
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
return sync_detailed(
|
|
77
|
+
client=client,
|
|
78
|
+
).parsed
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
async def asyncio_detailed(
|
|
82
|
+
*,
|
|
83
|
+
client: Union[AuthenticatedClient, Client],
|
|
84
|
+
) -> Response[str]:
|
|
85
|
+
"""get minimum worker version across all workers
|
|
86
|
+
|
|
87
|
+
Raises:
|
|
88
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
89
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
90
|
+
|
|
91
|
+
Returns:
|
|
92
|
+
Response[str]
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
kwargs = _get_kwargs()
|
|
96
|
+
|
|
97
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
98
|
+
|
|
99
|
+
return _build_response(client=client, response=response)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
async def asyncio(
|
|
103
|
+
*,
|
|
104
|
+
client: Union[AuthenticatedClient, Client],
|
|
105
|
+
) -> Optional[str]:
|
|
106
|
+
"""get minimum worker version across all workers
|
|
107
|
+
|
|
108
|
+
Raises:
|
|
109
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
110
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
111
|
+
|
|
112
|
+
Returns:
|
|
113
|
+
str
|
|
114
|
+
"""
|
|
115
|
+
|
|
116
|
+
return (
|
|
117
|
+
await asyncio_detailed(
|
|
118
|
+
client=client,
|
|
119
|
+
)
|
|
120
|
+
).parsed
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Dict, Optional, Union
|
|
3
|
+
|
|
4
|
+
import httpx
|
|
5
|
+
|
|
6
|
+
from ... import errors
|
|
7
|
+
from ...client import AuthenticatedClient, Client
|
|
8
|
+
from ...types import Response
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def _get_kwargs(
|
|
12
|
+
workspace: str,
|
|
13
|
+
path: str,
|
|
14
|
+
) -> Dict[str, Any]:
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
return {
|
|
18
|
+
"method": "get",
|
|
19
|
+
"url": "/w/{workspace}/apps/secret_of_latest_version/{path}".format(
|
|
20
|
+
workspace=workspace,
|
|
21
|
+
path=path,
|
|
22
|
+
),
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
|
|
27
|
+
if client.raise_on_unexpected_status:
|
|
28
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
29
|
+
else:
|
|
30
|
+
return None
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
|
|
34
|
+
return Response(
|
|
35
|
+
status_code=HTTPStatus(response.status_code),
|
|
36
|
+
content=response.content,
|
|
37
|
+
headers=response.headers,
|
|
38
|
+
parsed=_parse_response(client=client, response=response),
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def sync_detailed(
|
|
43
|
+
workspace: str,
|
|
44
|
+
path: str,
|
|
45
|
+
*,
|
|
46
|
+
client: Union[AuthenticatedClient, Client],
|
|
47
|
+
) -> Response[Any]:
|
|
48
|
+
"""get public secret of latest version of an app bundle
|
|
49
|
+
|
|
50
|
+
Args:
|
|
51
|
+
workspace (str):
|
|
52
|
+
path (str):
|
|
53
|
+
|
|
54
|
+
Raises:
|
|
55
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
56
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
57
|
+
|
|
58
|
+
Returns:
|
|
59
|
+
Response[Any]
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
kwargs = _get_kwargs(
|
|
63
|
+
workspace=workspace,
|
|
64
|
+
path=path,
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
response = client.get_httpx_client().request(
|
|
68
|
+
**kwargs,
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
return _build_response(client=client, response=response)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
async def asyncio_detailed(
|
|
75
|
+
workspace: str,
|
|
76
|
+
path: str,
|
|
77
|
+
*,
|
|
78
|
+
client: Union[AuthenticatedClient, Client],
|
|
79
|
+
) -> Response[Any]:
|
|
80
|
+
"""get public secret of latest version of an app bundle
|
|
81
|
+
|
|
82
|
+
Args:
|
|
83
|
+
workspace (str):
|
|
84
|
+
path (str):
|
|
85
|
+
|
|
86
|
+
Raises:
|
|
87
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
88
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
89
|
+
|
|
90
|
+
Returns:
|
|
91
|
+
Response[Any]
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
kwargs = _get_kwargs(
|
|
95
|
+
workspace=workspace,
|
|
96
|
+
path=path,
|
|
97
|
+
)
|
|
98
|
+
|
|
99
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
100
|
+
|
|
101
|
+
return _build_response(client=client, response=response)
|