kestrapy 0.0.4__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.
- kestrapy-0.0.4/PKG-INFO +874 -0
- kestrapy-0.0.4/README.md +856 -0
- kestrapy-0.0.4/kestra_api_client/__init__.py +891 -0
- kestrapy-0.0.4/kestra_api_client/api/__init__.py +39 -0
- kestrapy-0.0.4/kestra_api_client/api/ai_api.py +323 -0
- kestrapy-0.0.4/kestra_api_client/api/apps_api.py +6283 -0
- kestrapy-0.0.4/kestra_api_client/api/audit_logs_api.py +1415 -0
- kestrapy-0.0.4/kestra_api_client/api/auths_api.py +1584 -0
- kestrapy-0.0.4/kestra_api_client/api/banners_api.py +1106 -0
- kestrapy-0.0.4/kestra_api_client/api/bindings_api.py +1536 -0
- kestrapy-0.0.4/kestra_api_client/api/blueprint_tags_api.py +609 -0
- kestrapy-0.0.4/kestra_api_client/api/blueprints_api.py +3029 -0
- kestrapy-0.0.4/kestra_api_client/api/cluster_api.py +515 -0
- kestrapy-0.0.4/kestra_api_client/api/dashboards_api.py +3262 -0
- kestrapy-0.0.4/kestra_api_client/api/default_api.py +1719 -0
- kestrapy-0.0.4/kestra_api_client/api/executions_api.py +19196 -0
- kestrapy-0.0.4/kestra_api_client/api/files_api.py +2658 -0
- kestrapy-0.0.4/kestra_api_client/api/flows_api.py +9461 -0
- kestrapy-0.0.4/kestra_api_client/api/groups_api.py +3352 -0
- kestrapy-0.0.4/kestra_api_client/api/invitations_api.py +1756 -0
- kestrapy-0.0.4/kestra_api_client/api/kv_api.py +1507 -0
- kestrapy-0.0.4/kestra_api_client/api/logs_api.py +2118 -0
- kestrapy-0.0.4/kestra_api_client/api/maintenance_api.py +515 -0
- kestrapy-0.0.4/kestra_api_client/api/metrics_api.py +2044 -0
- kestrapy-0.0.4/kestra_api_client/api/misc_api.py +2632 -0
- kestrapy-0.0.4/kestra_api_client/api/namespaces_api.py +4502 -0
- kestrapy-0.0.4/kestra_api_client/api/plugins_api.py +5148 -0
- kestrapy-0.0.4/kestra_api_client/api/roles_api.py +2089 -0
- kestrapy-0.0.4/kestra_api_client/api/scim_api.py +4925 -0
- kestrapy-0.0.4/kestra_api_client/api/scim_configuration_api.py +1445 -0
- kestrapy-0.0.4/kestra_api_client/api/security_integrations_api.py +1699 -0
- kestrapy-0.0.4/kestra_api_client/api/service_account_api.py +1181 -0
- kestrapy-0.0.4/kestra_api_client/api/services_api.py +887 -0
- kestrapy-0.0.4/kestra_api_client/api/tenant_access_api.py +1501 -0
- kestrapy-0.0.4/kestra_api_client/api/tenants_api.py +1992 -0
- kestrapy-0.0.4/kestra_api_client/api/test_suites_api.py +3583 -0
- kestrapy-0.0.4/kestra_api_client/api/triggers_api.py +5616 -0
- kestrapy-0.0.4/kestra_api_client/api/users_api.py +5965 -0
- kestrapy-0.0.4/kestra_api_client/api/worker_groups_api.py +1378 -0
- kestrapy-0.0.4/kestra_api_client/api_client.py +801 -0
- kestrapy-0.0.4/kestra_api_client/api_response.py +21 -0
- kestrapy-0.0.4/kestra_api_client/configuration.py +606 -0
- kestrapy-0.0.4/kestra_api_client/exceptions.py +216 -0
- kestrapy-0.0.4/kestra_api_client/kestra_client.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/__init__.py +403 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_binding_controller_binding_detail.py +109 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_flow.py +157 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_flow_labels.py +140 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_graph.py +105 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_graph_branch_type.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_group_controller_group_with_members.py +101 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_metric_entry_object.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_trigger.py +167 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_trigger_for_execution.py +129 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_user.py +147 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_user_controller_password_request.py +87 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_user_controller_user_api_autocomplete.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_user_group_identifier.py +99 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_user_group_identifier_membership.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/abstract_user_tenant_identity_provider.py +113 -0
- kestrapy-0.0.4/kestra_api_client/models/acl_service_namespace_role.py +93 -0
- kestrapy-0.0.4/kestra_api_client/models/action.py +39 -0
- kestrapy-0.0.4/kestra_api_client/models/api_auth.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/api_autocomplete.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/api_group_summary.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/api_ids.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/api_role_summary.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/api_secret_list_response.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/api_secret_meta.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/api_secret_meta_ee.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/api_secret_tag.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/api_secret_value.py +115 -0
- kestrapy-0.0.4/kestra_api_client/models/api_service_account.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/api_tenant.py +145 -0
- kestrapy-0.0.4/kestra_api_client/models/api_user.py +157 -0
- kestrapy-0.0.4/kestra_api_client/models/app_response.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/app_response_ui_layout.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/apps_controller_api_app.py +117 -0
- kestrapy-0.0.4/kestra_api_client/models/apps_controller_api_app_catalog_item.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/apps_controller_api_app_source.py +115 -0
- kestrapy-0.0.4/kestra_api_client/models/apps_controller_api_app_tags.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/apps_controller_api_bulk_import_response.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/apps_controller_api_bulk_import_response_error.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/apps_controller_api_bulk_operation_request.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/assertion.py +185 -0
- kestrapy-0.0.4/kestra_api_client/models/assertion_result.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/assertion_run_error.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/attribute_reference.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/audit_log.py +124 -0
- kestrapy-0.0.4/kestra_api_client/models/audit_log_controller_audit_log_diff.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/audit_log_controller_audit_log_option.py +105 -0
- kestrapy-0.0.4/kestra_api_client/models/audit_log_controller_audit_log_with_user.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/audit_log_controller_find_request.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/audit_log_detail.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/auth_controller_auth.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/auth_controller_invitation_user_request.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/auth_controller_reset_password_request.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/backfill.py +121 -0
- kestrapy-0.0.4/kestra_api_client/models/banner.py +129 -0
- kestrapy-0.0.4/kestra_api_client/models/banner_type.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/base_audit_log.py +120 -0
- kestrapy-0.0.4/kestra_api_client/models/base_resource_patch_request.py +101 -0
- kestrapy-0.0.4/kestra_api_client/models/base_resource_scim_resource.py +101 -0
- kestrapy-0.0.4/kestra_api_client/models/base_resource_search_request.py +101 -0
- kestrapy-0.0.4/kestra_api_client/models/binding.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/binding_type.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/blueprint.py +114 -0
- kestrapy-0.0.4/kestra_api_client/models/blueprint_controller_api_blueprint_item.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/blueprint_controller_api_blueprint_item_with_source.py +116 -0
- kestrapy-0.0.4/kestra_api_client/models/blueprint_controller_api_blueprint_tag_item.py +105 -0
- kestrapy-0.0.4/kestra_api_client/models/blueprint_controller_kind.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/blueprint_with_flow.py +116 -0
- kestrapy-0.0.4/kestra_api_client/models/breakpoint.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/bulk_error_response.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/bulk_response.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/cache.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/chart_chart_option.py +119 -0
- kestrapy-0.0.4/kestra_api_client/models/chart_filters_overrides.py +121 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_active_service.py +90 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_active_service_list.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_create_or_update_worker_group_request.py +91 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_artifact.py +95 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_artifact_list_plugin_artifact.py +89 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_artifact_list_plugin_resolution_result.py +89 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_list_request.py +87 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_version_details.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_version_details_api_plugin_class.py +89 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_version_details_api_plugin_classes.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_versions.py +99 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_plugin_versions_api_plugin_version_and_metadata.py +93 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_server_instance.py +94 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_service_instance.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_worker_group.py +93 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_worker_group_details.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_worker_group_item.py +93 -0
- kestrapy-0.0.4/kestra_api_client/models/cluster_controller_api_worker_group_list.py +95 -0
- kestrapy-0.0.4/kestra_api_client/models/concurrency.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/concurrency_behavior.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/condition.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/configuration_usage.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/conversion_service_provider.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/convertible_multi_values_string.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/convertible_values_list_string.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/create_api_token_request.py +114 -0
- kestrapy-0.0.4/kestra_api_client/models/create_api_token_response.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/create_security_integration_request.py +113 -0
- kestrapy-0.0.4/kestra_api_client/models/crud_event_type.py +44 -0
- kestrapy-0.0.4/kestra_api_client/models/custom_link.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/daily_execution_statistics.py +115 -0
- kestrapy-0.0.4/kestra_api_client/models/daily_execution_statistics_duration.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/daily_execution_statistics_execution_counts.py +128 -0
- kestrapy-0.0.4/kestra_api_client/models/dashboard.py +121 -0
- kestrapy-0.0.4/kestra_api_client/models/dashboard_controller_preview_request.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/delete_executions_by_query_request.py +113 -0
- kestrapy-0.0.4/kestra_api_client/models/deleted_interface.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/depends_on.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/documentation_with_schema.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/email.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/event_app_response.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/event_execution.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/event_execution_status_event.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/event_log_entry.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/executable_task_subflow_id.py +109 -0
- kestrapy-0.0.4/kestra_api_client/models/execution.py +204 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_api_validate_execution_inputs_response.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_api_validate_execution_inputs_response_api_input_and_value.py +118 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_api_validate_execution_inputs_response_api_input_error.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_eval_result.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_execution_response.py +206 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_last_execution_response.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_set_labels_by_ids_request.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_state_request.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_controller_webhook_response.py +134 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_kind.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_metadata.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_repository_interface_child_filter.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_repository_interface_flow_filter.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_status_event.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_trigger.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/execution_usage.py +117 -0
- kestrapy-0.0.4/kestra_api_client/models/file_attributes.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/file_attributes_file_type.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/file_metas.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/filter.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/fixtures.py +118 -0
- kestrapy-0.0.4/kestra_api_client/models/flow.py +253 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_all_of_labels.py +140 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_controller_task_validation_type.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_for_execution.py +204 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_for_execution_all_of_labels.py +140 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_generation_prompt.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_graph.py +130 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_graph_cluster.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_graph_edge.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_id.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_interface.py +166 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_node.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_relation.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_scope.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_topology_graph.py +118 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_topology_graph_edge.py +105 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_usage.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_with_source.py +253 -0
- kestrapy-0.0.4/kestra_api_client/models/flow_with_source_all_of_labels.py +140 -0
- kestrapy-0.0.4/kestra_api_client/models/global_filter.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/group.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/group_identifier.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/group_identifier_membership.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/group_usage.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/host_usage.py +118 -0
- kestrapy-0.0.4/kestra_api_client/models/host_usage_hardware.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/host_usage_jvm.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/host_usage_os.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/http_parameters.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_binding_controller_api_binding_detail.py +122 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_binding_controller_api_binding_group.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_binding_controller_api_binding_summary.py +123 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_binding_controller_api_binding_user.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_binding_controller_api_create_binding_request.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_binding_controller_api_role.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_group_controller_api_create_group_request.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_group_controller_api_group_detail.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_group_controller_api_group_member.py +114 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_group_controller_api_group_membership.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_group_controller_api_update_group_request.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_invitation_controller_api_invitation_create_request.py +114 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_invitation_controller_api_invitation_detail.py +138 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_invitation_controller_api_invitation_role.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_role_controller_api_role_create_or_update_request.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_role_controller_api_role_create_or_update_request_permissions.py +152 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_role_controller_api_role_detail.py +114 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_service_account_controller_api_group.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_service_account_controller_api_service_account_request.py +122 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_service_account_controller_api_service_account_response.py +124 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_tenant_access_controller_api_authentication.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_tenant_access_controller_api_create_tenant_access_request.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_tenant_access_controller_api_group.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_tenant_access_controller_api_role_assignment.py +119 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_tenant_access_controller_api_tenant_access.py +128 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_tenant_access_controller_api_user_permission.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_tenant_access_controller_api_user_tenant_access.py +126 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_tenant_access_controller_user_api_autocomplete.py +119 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_create_or_update_user_request.py +114 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_group.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_patch_restricted_request.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_patch_super_admin_request.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_patch_user_password_request.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_tenant.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_user.py +144 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_user_auth.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_controller_api_user_summary.py +126 -0
- kestrapy-0.0.4/kestra_api_client/models/iam_user_group_controller_api_update_user_groups_request.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/id_with_namespace.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/identity_provider.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/input_object.py +127 -0
- kestrapy-0.0.4/kestra_api_client/models/input_type.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_active_service.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_active_service_list.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_create_or_update_worker_group_request.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_artifact.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_artifact_list_plugin_artifact.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_artifact_list_plugin_resolution_result.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_list_request.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_version_details.py +120 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_version_details_api_plugin_class.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_version_details_api_plugin_classes.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_versions.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_plugin_versions_api_plugin_version_and_metadata.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_server_instance.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_service_instance.py +117 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_worker_group.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_worker_group_details.py +116 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_worker_group_item.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/instance_controller_api_worker_group_list.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/invitation.py +145 -0
- kestrapy-0.0.4/kestra_api_client/models/invitation_invitation_status.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/isolation.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/kv_controller_api_delete_bulk_request.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/kv_controller_api_delete_bulk_response.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/kv_controller_typed_value.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/kv_entry.py +109 -0
- kestrapy-0.0.4/kestra_api_client/models/kv_type.py +42 -0
- kestrapy-0.0.4/kestra_api_client/models/label.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/level.py +40 -0
- kestrapy-0.0.4/kestra_api_client/models/listener.py +121 -0
- kestrapy-0.0.4/kestra_api_client/models/log_entry.py +157 -0
- kestrapy-0.0.4/kestra_api_client/models/map_object_object.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/me_controller_api_me.py +130 -0
- kestrapy-0.0.4/kestra_api_client/models/me_controller_api_profile.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/me_controller_api_tenant.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/me_controller_api_update_password_request.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/me_controller_api_user_details_request.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/me_controller_me.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/me_controller_update_password_request.py +89 -0
- kestrapy-0.0.4/kestra_api_client/models/me_controller_user_details_request.py +91 -0
- kestrapy-0.0.4/kestra_api_client/models/meta.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/metric.py +118 -0
- kestrapy-0.0.4/kestra_api_client/models/metric_aggregation.py +105 -0
- kestrapy-0.0.4/kestra_api_client/models/metric_aggregations.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/metric_entry.py +149 -0
- kestrapy-0.0.4/kestra_api_client/models/metric_tag.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/misc_controller_basic_auth_credentials.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/misc_controller_configuration.py +147 -0
- kestrapy-0.0.4/kestra_api_client/models/misc_controller_ee_configuration.py +207 -0
- kestrapy-0.0.4/kestra_api_client/models/misc_controller_environment.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/misc_controller_license_info.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/misc_controller_plugin_id_and_version.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/misc_controller_preview.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/misc_controller_tenant_configuration_info.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/model_schema.py +121 -0
- kestrapy-0.0.4/kestra_api_client/models/name.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/namespace.py +129 -0
- kestrapy-0.0.4/kestra_api_client/models/namespace_allowed_namespace.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/namespace_allowed_trigger.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/namespace_light.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/namespace_usage.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/namespace_with_disabled.py +175 -0
- kestrapy-0.0.4/kestra_api_client/models/output.py +117 -0
- kestrapy-0.0.4/kestra_api_client/models/page_request.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_abstract_binding_controller_binding_detail.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_api_group_summary.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_api_role_summary.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_api_user.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_apps_controller_api_app.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_apps_controller_api_app_catalog_item.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_audit_log_controller_audit_log_with_user.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_blueprint.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_blueprint_controller_api_blueprint_item.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_cluster_controller_api_plugin_artifact.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_cluster_controller_api_service_instance.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_dashboard.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_execution.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_flow.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_group.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_iam_binding_controller_api_binding_summary.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_iam_group_controller_api_group_member.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_iam_invitation_controller_api_invitation_detail.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_iam_tenant_access_controller_api_user_tenant_access.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_iam_user_controller_api_user_summary.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_instance_controller_api_plugin_artifact.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_instance_controller_api_service_instance.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_invitation.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_log_entry.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_map_string_object.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_metric_entry.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_namespace_with_disabled.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_role.py +97 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_search_result_flow.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_task_run.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_tenant.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_test_suite.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_trigger.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/paged_results_trigger_controller_triggers.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/patch_operation.py +109 -0
- kestrapy-0.0.4/kestra_api_client/models/patch_operation_path.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/patch_operation_type.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/patch_request.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/permission.py +62 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin.py +241 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_artifact.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_artifact_metadata.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_controller_api_plugin_versions.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_default.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_icon.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_metric.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_plugin_element_metadata.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_schema.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_sub_group_plugin_category.py +49 -0
- kestrapy-0.0.4/kestra_api_client/models/plugin_usage.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/preview_app_request.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/property_boolean.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/property_double.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/property_duration.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/property_list_string.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/property_object.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/property_string.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/query_filter.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/query_filter_field.py +50 -0
- kestrapy-0.0.4/kestra_api_client/models/query_filter_field_op.py +112 -0
- kestrapy-0.0.4/kestra_api_client/models/query_filter_op.py +48 -0
- kestrapy-0.0.4/kestra_api_client/models/query_filter_operation.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/query_filter_resource_field.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/rbac_service_role_assignment_role_origin.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/relation.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/relation_type.py +42 -0
- kestrapy-0.0.4/kestra_api_client/models/resource_type.py +148 -0
- kestrapy-0.0.4/kestra_api_client/models/resource_type_schema_extension_configuration.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/role.py +116 -0
- kestrapy-0.0.4/kestra_api_client/models/role_permissions.py +131 -0
- kestrapy-0.0.4/kestra_api_client/models/role_usage.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/schema_attribute.py +161 -0
- kestrapy-0.0.4/kestra_api_client/models/schema_attribute_mutability.py +39 -0
- kestrapy-0.0.4/kestra_api_client/models/schema_attribute_returned.py +39 -0
- kestrapy-0.0.4/kestra_api_client/models/schema_attribute_type.py +43 -0
- kestrapy-0.0.4/kestra_api_client/models/schema_attribute_uniqueness.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/schema_type.py +43 -0
- kestrapy-0.0.4/kestra_api_client/models/scim_extension.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/scim_resource.py +130 -0
- kestrapy-0.0.4/kestra_api_client/models/scim_resource_with_optional_id.py +130 -0
- kestrapy-0.0.4/kestra_api_client/models/scim_user.py +170 -0
- kestrapy-0.0.4/kestra_api_client/models/search_request.py +150 -0
- kestrapy-0.0.4/kestra_api_client/models/search_result_flow.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/security_integration_type.py +36 -0
- kestrapy-0.0.4/kestra_api_client/models/server_config.py +114 -0
- kestrapy-0.0.4/kestra_api_client/models/server_config_liveness.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/server_instance.py +119 -0
- kestrapy-0.0.4/kestra_api_client/models/server_instance_type.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/server_type.py +41 -0
- kestrapy-0.0.4/kestra_api_client/models/service_instance.py +147 -0
- kestrapy-0.0.4/kestra_api_client/models/service_instance_timestamped_event.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/service_provider_configuration.py +175 -0
- kestrapy-0.0.4/kestra_api_client/models/service_provider_configuration_authentication_schema.py +109 -0
- kestrapy-0.0.4/kestra_api_client/models/service_provider_configuration_authentication_schema_type.py +40 -0
- kestrapy-0.0.4/kestra_api_client/models/service_provider_configuration_bulk_configuration.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/service_provider_configuration_filter_configuration.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/service_provider_configuration_supported_configuration.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/service_service_state.py +45 -0
- kestrapy-0.0.4/kestra_api_client/models/service_type.py +40 -0
- kestrapy-0.0.4/kestra_api_client/models/service_usage.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/service_usage_daily_service_statistics.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/service_usage_daily_statistics.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/setup_configuration.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/setup_configuration_setup_data.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/sla.py +113 -0
- kestrapy-0.0.4/kestra_api_client/models/sla_behavior.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/sla_type.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/sort_order.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/sort_request.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/state.py +129 -0
- kestrapy-0.0.4/kestra_api_client/models/state_history.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/state_type.py +50 -0
- kestrapy-0.0.4/kestra_api_client/models/task.py +162 -0
- kestrapy-0.0.4/kestra_api_client/models/task_fixture.py +113 -0
- kestrapy-0.0.4/kestra_api_client/models/task_for_execution.py +156 -0
- kestrapy-0.0.4/kestra_api_client/models/task_run.py +143 -0
- kestrapy-0.0.4/kestra_api_client/models/task_run_attempt.py +128 -0
- kestrapy-0.0.4/kestra_api_client/models/tenant.py +143 -0
- kestrapy-0.0.4/kestra_api_client/models/tenant_interface.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/tenant_usage.py +100 -0
- kestrapy-0.0.4/kestra_api_client/models/test_state.py +39 -0
- kestrapy-0.0.4/kestra_api_client/models/test_suite.py +144 -0
- kestrapy-0.0.4/kestra_api_client/models/test_suite_controller_search_tests_last_result.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/test_suite_controller_test_suite_api_id.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/test_suite_controller_test_suite_bulk_request.py +109 -0
- kestrapy-0.0.4/kestra_api_client/models/test_suite_controller_tests_last_result_response.py +108 -0
- kestrapy-0.0.4/kestra_api_client/models/test_suite_run_result.py +124 -0
- kestrapy-0.0.4/kestra_api_client/models/the_labels_to_pass_to_the_execution_created.py +140 -0
- kestrapy-0.0.4/kestra_api_client/models/time_window.py +102 -0
- kestrapy-0.0.4/kestra_api_client/models/trigger.py +176 -0
- kestrapy-0.0.4/kestra_api_client/models/trigger_context.py +148 -0
- kestrapy-0.0.4/kestra_api_client/models/trigger_controller_set_disabled_request.py +111 -0
- kestrapy-0.0.4/kestra_api_client/models/trigger_controller_triggers.py +110 -0
- kestrapy-0.0.4/kestra_api_client/models/trigger_fixture.py +104 -0
- kestrapy-0.0.4/kestra_api_client/models/type.py +54 -0
- kestrapy-0.0.4/kestra_api_client/models/unit_test.py +122 -0
- kestrapy-0.0.4/kestra_api_client/models/unit_test_result.py +135 -0
- kestrapy-0.0.4/kestra_api_client/models/update_flow200_response.py +137 -0
- kestrapy-0.0.4/kestra_api_client/models/update_flows_in_namespace_from_json200_response.py +145 -0
- kestrapy-0.0.4/kestra_api_client/models/usage.py +188 -0
- kestrapy-0.0.4/kestra_api_client/models/usage_ee.py +198 -0
- kestrapy-0.0.4/kestra_api_client/models/user_group.py +107 -0
- kestrapy-0.0.4/kestra_api_client/models/user_group_type.py +37 -0
- kestrapy-0.0.4/kestra_api_client/models/user_type.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/user_usage.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/username_password_credentials.py +117 -0
- kestrapy-0.0.4/kestra_api_client/models/validate_constraint_violation.py +114 -0
- kestrapy-0.0.4/kestra_api_client/models/value_path_expression.py +106 -0
- kestrapy-0.0.4/kestra_api_client/models/worker_group.py +103 -0
- kestrapy-0.0.4/kestra_api_client/models/worker_group_fallback.py +38 -0
- kestrapy-0.0.4/kestra_api_client/models/worker_task_restart_strategy.py +38 -0
- kestrapy-0.0.4/kestra_api_client/py.typed +0 -0
- kestrapy-0.0.4/kestra_api_client/rest.py +258 -0
- kestrapy-0.0.4/kestrapy/__init__.py +889 -0
- kestrapy-0.0.4/kestrapy/api/__init__.py +39 -0
- kestrapy-0.0.4/kestrapy/api/ai_api.py +323 -0
- kestrapy-0.0.4/kestrapy/api/apps_api.py +6283 -0
- kestrapy-0.0.4/kestrapy/api/audit_logs_api.py +1415 -0
- kestrapy-0.0.4/kestrapy/api/auths_api.py +1584 -0
- kestrapy-0.0.4/kestrapy/api/banners_api.py +1106 -0
- kestrapy-0.0.4/kestrapy/api/bindings_api.py +1536 -0
- kestrapy-0.0.4/kestrapy/api/blueprint_tags_api.py +609 -0
- kestrapy-0.0.4/kestrapy/api/blueprints_api.py +3029 -0
- kestrapy-0.0.4/kestrapy/api/cluster_api.py +515 -0
- kestrapy-0.0.4/kestrapy/api/dashboards_api.py +3262 -0
- kestrapy-0.0.4/kestrapy/api/default_api.py +1719 -0
- kestrapy-0.0.4/kestrapy/api/executions_api.py +19197 -0
- kestrapy-0.0.4/kestrapy/api/files_api.py +2658 -0
- kestrapy-0.0.4/kestrapy/api/flows_api.py +9461 -0
- kestrapy-0.0.4/kestrapy/api/groups_api.py +3352 -0
- kestrapy-0.0.4/kestrapy/api/invitations_api.py +1756 -0
- kestrapy-0.0.4/kestrapy/api/kv_api.py +1507 -0
- kestrapy-0.0.4/kestrapy/api/logs_api.py +2118 -0
- kestrapy-0.0.4/kestrapy/api/maintenance_api.py +515 -0
- kestrapy-0.0.4/kestrapy/api/metrics_api.py +2044 -0
- kestrapy-0.0.4/kestrapy/api/misc_api.py +2632 -0
- kestrapy-0.0.4/kestrapy/api/namespaces_api.py +4502 -0
- kestrapy-0.0.4/kestrapy/api/plugins_api.py +5148 -0
- kestrapy-0.0.4/kestrapy/api/roles_api.py +2089 -0
- kestrapy-0.0.4/kestrapy/api/scim_api.py +4925 -0
- kestrapy-0.0.4/kestrapy/api/scim_configuration_api.py +1445 -0
- kestrapy-0.0.4/kestrapy/api/security_integrations_api.py +1699 -0
- kestrapy-0.0.4/kestrapy/api/service_account_api.py +1181 -0
- kestrapy-0.0.4/kestrapy/api/services_api.py +887 -0
- kestrapy-0.0.4/kestrapy/api/tenant_access_api.py +1501 -0
- kestrapy-0.0.4/kestrapy/api/tenants_api.py +1992 -0
- kestrapy-0.0.4/kestrapy/api/test_suites_api.py +3583 -0
- kestrapy-0.0.4/kestrapy/api/triggers_api.py +5616 -0
- kestrapy-0.0.4/kestrapy/api/users_api.py +5965 -0
- kestrapy-0.0.4/kestrapy/api/worker_groups_api.py +1378 -0
- kestrapy-0.0.4/kestrapy/api_client.py +801 -0
- kestrapy-0.0.4/kestrapy/api_response.py +21 -0
- kestrapy-0.0.4/kestrapy/configuration.py +606 -0
- kestrapy-0.0.4/kestrapy/exceptions.py +216 -0
- kestrapy-0.0.4/kestrapy/models/__init__.py +403 -0
- kestrapy-0.0.4/kestrapy/models/abstract_flow.py +157 -0
- kestrapy-0.0.4/kestrapy/models/abstract_flow_labels.py +140 -0
- kestrapy-0.0.4/kestrapy/models/abstract_graph.py +105 -0
- kestrapy-0.0.4/kestrapy/models/abstract_graph_branch_type.py +38 -0
- kestrapy-0.0.4/kestrapy/models/abstract_metric_entry_object.py +111 -0
- kestrapy-0.0.4/kestrapy/models/abstract_trigger.py +167 -0
- kestrapy-0.0.4/kestrapy/models/abstract_trigger_for_execution.py +129 -0
- kestrapy-0.0.4/kestrapy/models/abstract_user.py +147 -0
- kestrapy-0.0.4/kestrapy/models/abstract_user_tenant_identity_provider.py +113 -0
- kestrapy-0.0.4/kestrapy/models/action.py +39 -0
- kestrapy-0.0.4/kestrapy/models/api_auth.py +104 -0
- kestrapy-0.0.4/kestrapy/models/api_autocomplete.py +112 -0
- kestrapy-0.0.4/kestrapy/models/api_group_summary.py +102 -0
- kestrapy-0.0.4/kestrapy/models/api_ids.py +100 -0
- kestrapy-0.0.4/kestrapy/models/api_role_summary.py +106 -0
- kestrapy-0.0.4/kestrapy/models/api_secret_list_response.py +112 -0
- kestrapy-0.0.4/kestrapy/models/api_secret_meta.py +100 -0
- kestrapy-0.0.4/kestrapy/models/api_secret_meta_ee.py +103 -0
- kestrapy-0.0.4/kestrapy/models/api_secret_tag.py +102 -0
- kestrapy-0.0.4/kestrapy/models/api_secret_value.py +115 -0
- kestrapy-0.0.4/kestrapy/models/api_tenant.py +145 -0
- kestrapy-0.0.4/kestrapy/models/api_user.py +157 -0
- kestrapy-0.0.4/kestrapy/models/app_response.py +108 -0
- kestrapy-0.0.4/kestrapy/models/app_response_ui_layout.py +100 -0
- kestrapy-0.0.4/kestrapy/models/apps_controller_api_app.py +117 -0
- kestrapy-0.0.4/kestrapy/models/apps_controller_api_app_catalog_item.py +108 -0
- kestrapy-0.0.4/kestrapy/models/apps_controller_api_app_source.py +115 -0
- kestrapy-0.0.4/kestrapy/models/apps_controller_api_app_tags.py +100 -0
- kestrapy-0.0.4/kestrapy/models/apps_controller_api_bulk_import_response.py +110 -0
- kestrapy-0.0.4/kestrapy/models/apps_controller_api_bulk_import_response_error.py +102 -0
- kestrapy-0.0.4/kestrapy/models/apps_controller_api_bulk_operation_request.py +100 -0
- kestrapy-0.0.4/kestrapy/models/assertion.py +185 -0
- kestrapy-0.0.4/kestrapy/models/assertion_result.py +112 -0
- kestrapy-0.0.4/kestrapy/models/assertion_run_error.py +102 -0
- kestrapy-0.0.4/kestrapy/models/attribute_reference.py +110 -0
- kestrapy-0.0.4/kestrapy/models/audit_log.py +124 -0
- kestrapy-0.0.4/kestrapy/models/audit_log_controller_audit_log_diff.py +102 -0
- kestrapy-0.0.4/kestrapy/models/audit_log_controller_audit_log_option.py +105 -0
- kestrapy-0.0.4/kestrapy/models/audit_log_controller_audit_log_with_user.py +110 -0
- kestrapy-0.0.4/kestrapy/models/audit_log_controller_find_request.py +111 -0
- kestrapy-0.0.4/kestrapy/models/audit_log_detail.py +107 -0
- kestrapy-0.0.4/kestrapy/models/auth_controller_auth.py +104 -0
- kestrapy-0.0.4/kestrapy/models/auth_controller_invitation_user_request.py +104 -0
- kestrapy-0.0.4/kestrapy/models/auth_controller_reset_password_request.py +102 -0
- kestrapy-0.0.4/kestrapy/models/backfill.py +121 -0
- kestrapy-0.0.4/kestrapy/models/banner.py +129 -0
- kestrapy-0.0.4/kestrapy/models/banner_type.py +38 -0
- kestrapy-0.0.4/kestrapy/models/base_audit_log.py +120 -0
- kestrapy-0.0.4/kestrapy/models/base_resource_patch_request.py +101 -0
- kestrapy-0.0.4/kestrapy/models/base_resource_scim_resource.py +101 -0
- kestrapy-0.0.4/kestrapy/models/base_resource_search_request.py +101 -0
- kestrapy-0.0.4/kestrapy/models/binding.py +111 -0
- kestrapy-0.0.4/kestrapy/models/binding_type.py +37 -0
- kestrapy-0.0.4/kestrapy/models/blueprint.py +114 -0
- kestrapy-0.0.4/kestrapy/models/blueprint_controller_api_blueprint_item.py +111 -0
- kestrapy-0.0.4/kestrapy/models/blueprint_controller_api_blueprint_item_with_source.py +116 -0
- kestrapy-0.0.4/kestrapy/models/blueprint_controller_api_blueprint_tag_item.py +105 -0
- kestrapy-0.0.4/kestrapy/models/blueprint_controller_kind.py +38 -0
- kestrapy-0.0.4/kestrapy/models/blueprint_with_flow.py +116 -0
- kestrapy-0.0.4/kestrapy/models/breakpoint.py +107 -0
- kestrapy-0.0.4/kestrapy/models/bulk_error_response.py +102 -0
- kestrapy-0.0.4/kestrapy/models/bulk_response.py +100 -0
- kestrapy-0.0.4/kestrapy/models/cache.py +102 -0
- kestrapy-0.0.4/kestrapy/models/chart_chart_option.py +119 -0
- kestrapy-0.0.4/kestrapy/models/chart_filters_overrides.py +121 -0
- kestrapy-0.0.4/kestrapy/models/concurrency.py +104 -0
- kestrapy-0.0.4/kestrapy/models/concurrency_behavior.py +38 -0
- kestrapy-0.0.4/kestrapy/models/condition.py +108 -0
- kestrapy-0.0.4/kestrapy/models/configuration_usage.py +108 -0
- kestrapy-0.0.4/kestrapy/models/conversion_service_provider.py +100 -0
- kestrapy-0.0.4/kestrapy/models/convertible_multi_values_string.py +102 -0
- kestrapy-0.0.4/kestrapy/models/convertible_values_list_string.py +102 -0
- kestrapy-0.0.4/kestrapy/models/create_api_token_request.py +114 -0
- kestrapy-0.0.4/kestrapy/models/create_api_token_response.py +104 -0
- kestrapy-0.0.4/kestrapy/models/create_security_integration_request.py +113 -0
- kestrapy-0.0.4/kestrapy/models/crud_event_type.py +44 -0
- kestrapy-0.0.4/kestrapy/models/custom_link.py +104 -0
- kestrapy-0.0.4/kestrapy/models/daily_execution_statistics.py +115 -0
- kestrapy-0.0.4/kestrapy/models/daily_execution_statistics_duration.py +108 -0
- kestrapy-0.0.4/kestrapy/models/daily_execution_statistics_execution_counts.py +128 -0
- kestrapy-0.0.4/kestrapy/models/dashboard.py +121 -0
- kestrapy-0.0.4/kestrapy/models/dashboard_controller_preview_request.py +112 -0
- kestrapy-0.0.4/kestrapy/models/delete_executions_by_query_request.py +113 -0
- kestrapy-0.0.4/kestrapy/models/deleted_interface.py +100 -0
- kestrapy-0.0.4/kestrapy/models/depends_on.py +112 -0
- kestrapy-0.0.4/kestrapy/models/documentation_with_schema.py +106 -0
- kestrapy-0.0.4/kestrapy/models/email.py +104 -0
- kestrapy-0.0.4/kestrapy/models/event_app_response.py +112 -0
- kestrapy-0.0.4/kestrapy/models/event_execution.py +112 -0
- kestrapy-0.0.4/kestrapy/models/event_execution_status_event.py +112 -0
- kestrapy-0.0.4/kestrapy/models/event_log_entry.py +112 -0
- kestrapy-0.0.4/kestrapy/models/executable_task_subflow_id.py +109 -0
- kestrapy-0.0.4/kestrapy/models/execution.py +204 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_api_validate_execution_inputs_response.py +112 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_api_validate_execution_inputs_response_api_input_and_value.py +118 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_api_validate_execution_inputs_response_api_input_error.py +100 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_eval_result.py +104 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_execution_response.py +206 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_last_execution_response.py +110 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_set_labels_by_ids_request.py +110 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_state_request.py +103 -0
- kestrapy-0.0.4/kestrapy/models/execution_controller_webhook_response.py +134 -0
- kestrapy-0.0.4/kestrapy/models/execution_kind.py +38 -0
- kestrapy-0.0.4/kestrapy/models/execution_metadata.py +103 -0
- kestrapy-0.0.4/kestrapy/models/execution_repository_interface_child_filter.py +37 -0
- kestrapy-0.0.4/kestrapy/models/execution_repository_interface_flow_filter.py +102 -0
- kestrapy-0.0.4/kestrapy/models/execution_status_event.py +112 -0
- kestrapy-0.0.4/kestrapy/models/execution_trigger.py +106 -0
- kestrapy-0.0.4/kestrapy/models/execution_usage.py +117 -0
- kestrapy-0.0.4/kestrapy/models/file_attributes.py +111 -0
- kestrapy-0.0.4/kestrapy/models/file_attributes_file_type.py +37 -0
- kestrapy-0.0.4/kestrapy/models/file_metas.py +100 -0
- kestrapy-0.0.4/kestrapy/models/filter.py +102 -0
- kestrapy-0.0.4/kestrapy/models/fixtures.py +118 -0
- kestrapy-0.0.4/kestrapy/models/flow.py +253 -0
- kestrapy-0.0.4/kestrapy/models/flow_all_of_labels.py +140 -0
- kestrapy-0.0.4/kestrapy/models/flow_controller_task_validation_type.py +37 -0
- kestrapy-0.0.4/kestrapy/models/flow_for_execution.py +204 -0
- kestrapy-0.0.4/kestrapy/models/flow_for_execution_all_of_labels.py +140 -0
- kestrapy-0.0.4/kestrapy/models/flow_generation_prompt.py +102 -0
- kestrapy-0.0.4/kestrapy/models/flow_graph.py +130 -0
- kestrapy-0.0.4/kestrapy/models/flow_graph_cluster.py +112 -0
- kestrapy-0.0.4/kestrapy/models/flow_graph_edge.py +108 -0
- kestrapy-0.0.4/kestrapy/models/flow_id.py +106 -0
- kestrapy-0.0.4/kestrapy/models/flow_interface.py +166 -0
- kestrapy-0.0.4/kestrapy/models/flow_node.py +104 -0
- kestrapy-0.0.4/kestrapy/models/flow_relation.py +37 -0
- kestrapy-0.0.4/kestrapy/models/flow_scope.py +37 -0
- kestrapy-0.0.4/kestrapy/models/flow_topology_graph.py +118 -0
- kestrapy-0.0.4/kestrapy/models/flow_topology_graph_edge.py +105 -0
- kestrapy-0.0.4/kestrapy/models/flow_usage.py +108 -0
- kestrapy-0.0.4/kestrapy/models/flow_with_source.py +253 -0
- kestrapy-0.0.4/kestrapy/models/flow_with_source_all_of_labels.py +140 -0
- kestrapy-0.0.4/kestrapy/models/group.py +112 -0
- kestrapy-0.0.4/kestrapy/models/group_identifier.py +112 -0
- kestrapy-0.0.4/kestrapy/models/group_identifier_membership.py +37 -0
- kestrapy-0.0.4/kestrapy/models/group_usage.py +100 -0
- kestrapy-0.0.4/kestrapy/models/host_usage.py +118 -0
- kestrapy-0.0.4/kestrapy/models/host_usage_hardware.py +110 -0
- kestrapy-0.0.4/kestrapy/models/host_usage_jvm.py +104 -0
- kestrapy-0.0.4/kestrapy/models/host_usage_os.py +106 -0
- kestrapy-0.0.4/kestrapy/models/http_parameters.py +102 -0
- kestrapy-0.0.4/kestrapy/models/iam_binding_controller_api_binding_detail.py +122 -0
- kestrapy-0.0.4/kestrapy/models/iam_binding_controller_api_binding_group.py +102 -0
- kestrapy-0.0.4/kestrapy/models/iam_binding_controller_api_binding_summary.py +123 -0
- kestrapy-0.0.4/kestrapy/models/iam_binding_controller_api_binding_user.py +107 -0
- kestrapy-0.0.4/kestrapy/models/iam_binding_controller_api_create_binding_request.py +107 -0
- kestrapy-0.0.4/kestrapy/models/iam_binding_controller_api_role.py +102 -0
- kestrapy-0.0.4/kestrapy/models/iam_group_controller_api_create_group_request.py +104 -0
- kestrapy-0.0.4/kestrapy/models/iam_group_controller_api_group_detail.py +104 -0
- kestrapy-0.0.4/kestrapy/models/iam_group_controller_api_group_member.py +114 -0
- kestrapy-0.0.4/kestrapy/models/iam_group_controller_api_group_membership.py +107 -0
- kestrapy-0.0.4/kestrapy/models/iam_group_controller_api_update_group_request.py +102 -0
- kestrapy-0.0.4/kestrapy/models/iam_invitation_controller_api_invitation_create_request.py +114 -0
- kestrapy-0.0.4/kestrapy/models/iam_invitation_controller_api_invitation_detail.py +138 -0
- kestrapy-0.0.4/kestrapy/models/iam_invitation_controller_api_invitation_role.py +102 -0
- kestrapy-0.0.4/kestrapy/models/iam_role_controller_api_role_create_or_update_request.py +110 -0
- kestrapy-0.0.4/kestrapy/models/iam_role_controller_api_role_create_or_update_request_permissions.py +152 -0
- kestrapy-0.0.4/kestrapy/models/iam_role_controller_api_role_detail.py +114 -0
- kestrapy-0.0.4/kestrapy/models/iam_service_account_controller_api_group.py +100 -0
- kestrapy-0.0.4/kestrapy/models/iam_service_account_controller_api_service_account_request.py +122 -0
- kestrapy-0.0.4/kestrapy/models/iam_service_account_controller_api_service_account_response.py +124 -0
- kestrapy-0.0.4/kestrapy/models/iam_tenant_access_controller_api_authentication.py +102 -0
- kestrapy-0.0.4/kestrapy/models/iam_tenant_access_controller_api_create_tenant_access_request.py +100 -0
- kestrapy-0.0.4/kestrapy/models/iam_tenant_access_controller_api_group.py +104 -0
- kestrapy-0.0.4/kestrapy/models/iam_tenant_access_controller_api_role_assignment.py +119 -0
- kestrapy-0.0.4/kestrapy/models/iam_tenant_access_controller_api_tenant_access.py +128 -0
- kestrapy-0.0.4/kestrapy/models/iam_tenant_access_controller_api_user_permission.py +104 -0
- kestrapy-0.0.4/kestrapy/models/iam_tenant_access_controller_api_user_tenant_access.py +126 -0
- kestrapy-0.0.4/kestrapy/models/iam_tenant_access_controller_user_api_autocomplete.py +119 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_create_or_update_user_request.py +114 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_group.py +102 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_patch_restricted_request.py +100 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_patch_super_admin_request.py +100 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_patch_user_password_request.py +100 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_tenant.py +102 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_user.py +144 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_user_auth.py +104 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_controller_api_user_summary.py +126 -0
- kestrapy-0.0.4/kestrapy/models/iam_user_group_controller_api_update_user_groups_request.py +100 -0
- kestrapy-0.0.4/kestrapy/models/id_with_namespace.py +102 -0
- kestrapy-0.0.4/kestrapy/models/identity_provider.py +106 -0
- kestrapy-0.0.4/kestrapy/models/input_object.py +127 -0
- kestrapy-0.0.4/kestrapy/models/input_type.py +102 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_active_service.py +103 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_active_service_list.py +110 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_create_or_update_worker_group_request.py +104 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_artifact.py +108 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_artifact_list_plugin_artifact.py +102 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_artifact_list_plugin_resolution_result.py +102 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_list_request.py +100 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_version_details.py +120 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_version_details_api_plugin_class.py +102 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_version_details_api_plugin_classes.py +110 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_versions.py +112 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_plugin_versions_api_plugin_version_and_metadata.py +106 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_server_instance.py +107 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_service_instance.py +117 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_worker_group.py +106 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_worker_group_details.py +116 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_worker_group_item.py +106 -0
- kestrapy-0.0.4/kestrapy/models/instance_controller_api_worker_group_list.py +108 -0
- kestrapy-0.0.4/kestrapy/models/invitation.py +145 -0
- kestrapy-0.0.4/kestrapy/models/invitation_invitation_status.py +38 -0
- kestrapy-0.0.4/kestrapy/models/isolation.py +103 -0
- kestrapy-0.0.4/kestrapy/models/kv_controller_api_delete_bulk_request.py +100 -0
- kestrapy-0.0.4/kestrapy/models/kv_controller_api_delete_bulk_response.py +100 -0
- kestrapy-0.0.4/kestrapy/models/kv_controller_typed_value.py +103 -0
- kestrapy-0.0.4/kestrapy/models/kv_entry.py +109 -0
- kestrapy-0.0.4/kestrapy/models/kv_type.py +42 -0
- kestrapy-0.0.4/kestrapy/models/label.py +102 -0
- kestrapy-0.0.4/kestrapy/models/level.py +40 -0
- kestrapy-0.0.4/kestrapy/models/listener.py +121 -0
- kestrapy-0.0.4/kestrapy/models/log_entry.py +157 -0
- kestrapy-0.0.4/kestrapy/models/map_object_object.py +100 -0
- kestrapy-0.0.4/kestrapy/models/me_controller_api_me.py +130 -0
- kestrapy-0.0.4/kestrapy/models/me_controller_api_profile.py +106 -0
- kestrapy-0.0.4/kestrapy/models/me_controller_api_tenant.py +104 -0
- kestrapy-0.0.4/kestrapy/models/me_controller_api_update_password_request.py +102 -0
- kestrapy-0.0.4/kestrapy/models/me_controller_api_user_details_request.py +104 -0
- kestrapy-0.0.4/kestrapy/models/meta.py +110 -0
- kestrapy-0.0.4/kestrapy/models/metric.py +118 -0
- kestrapy-0.0.4/kestrapy/models/metric_aggregation.py +105 -0
- kestrapy-0.0.4/kestrapy/models/metric_aggregations.py +110 -0
- kestrapy-0.0.4/kestrapy/models/metric_entry.py +149 -0
- kestrapy-0.0.4/kestrapy/models/metric_tag.py +102 -0
- kestrapy-0.0.4/kestrapy/models/misc_controller_basic_auth_credentials.py +104 -0
- kestrapy-0.0.4/kestrapy/models/misc_controller_configuration.py +147 -0
- kestrapy-0.0.4/kestrapy/models/misc_controller_ee_configuration.py +207 -0
- kestrapy-0.0.4/kestrapy/models/misc_controller_environment.py +102 -0
- kestrapy-0.0.4/kestrapy/models/misc_controller_license_info.py +111 -0
- kestrapy-0.0.4/kestrapy/models/misc_controller_plugin_id_and_version.py +102 -0
- kestrapy-0.0.4/kestrapy/models/misc_controller_preview.py +102 -0
- kestrapy-0.0.4/kestrapy/models/misc_controller_tenant_configuration_info.py +102 -0
- kestrapy-0.0.4/kestrapy/models/model_schema.py +121 -0
- kestrapy-0.0.4/kestrapy/models/name.py +102 -0
- kestrapy-0.0.4/kestrapy/models/namespace.py +129 -0
- kestrapy-0.0.4/kestrapy/models/namespace_allowed_namespace.py +100 -0
- kestrapy-0.0.4/kestrapy/models/namespace_allowed_trigger.py +102 -0
- kestrapy-0.0.4/kestrapy/models/namespace_light.py +110 -0
- kestrapy-0.0.4/kestrapy/models/namespace_usage.py +100 -0
- kestrapy-0.0.4/kestrapy/models/namespace_with_disabled.py +175 -0
- kestrapy-0.0.4/kestrapy/models/output.py +117 -0
- kestrapy-0.0.4/kestrapy/models/page_request.py +102 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_api_group_summary.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_api_role_summary.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_apps_controller_api_app.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_apps_controller_api_app_catalog_item.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_audit_log_controller_audit_log_with_user.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_blueprint.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_blueprint_controller_api_blueprint_item.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_dashboard.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_execution.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_flow.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_iam_binding_controller_api_binding_summary.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_iam_group_controller_api_group_member.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_iam_invitation_controller_api_invitation_detail.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_iam_tenant_access_controller_api_user_tenant_access.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_iam_user_controller_api_user_summary.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_instance_controller_api_plugin_artifact.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_instance_controller_api_service_instance.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_log_entry.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_map_string_object.py +102 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_metric_entry.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_namespace_with_disabled.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_search_result_flow.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_task_run.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_tenant.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_test_suite.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_trigger.py +110 -0
- kestrapy-0.0.4/kestrapy/models/paged_results_trigger_controller_triggers.py +110 -0
- kestrapy-0.0.4/kestrapy/models/patch_operation.py +109 -0
- kestrapy-0.0.4/kestrapy/models/patch_operation_path.py +104 -0
- kestrapy-0.0.4/kestrapy/models/patch_operation_type.py +38 -0
- kestrapy-0.0.4/kestrapy/models/patch_request.py +111 -0
- kestrapy-0.0.4/kestrapy/models/permission.py +62 -0
- kestrapy-0.0.4/kestrapy/models/plugin.py +241 -0
- kestrapy-0.0.4/kestrapy/models/plugin_artifact.py +110 -0
- kestrapy-0.0.4/kestrapy/models/plugin_artifact_metadata.py +108 -0
- kestrapy-0.0.4/kestrapy/models/plugin_controller_api_plugin_versions.py +102 -0
- kestrapy-0.0.4/kestrapy/models/plugin_default.py +104 -0
- kestrapy-0.0.4/kestrapy/models/plugin_icon.py +104 -0
- kestrapy-0.0.4/kestrapy/models/plugin_metric.py +106 -0
- kestrapy-0.0.4/kestrapy/models/plugin_plugin_element_metadata.py +102 -0
- kestrapy-0.0.4/kestrapy/models/plugin_schema.py +104 -0
- kestrapy-0.0.4/kestrapy/models/plugin_sub_group_plugin_category.py +49 -0
- kestrapy-0.0.4/kestrapy/models/plugin_usage.py +100 -0
- kestrapy-0.0.4/kestrapy/models/preview_app_request.py +104 -0
- kestrapy-0.0.4/kestrapy/models/property_boolean.py +102 -0
- kestrapy-0.0.4/kestrapy/models/property_double.py +102 -0
- kestrapy-0.0.4/kestrapy/models/property_duration.py +102 -0
- kestrapy-0.0.4/kestrapy/models/property_list_string.py +102 -0
- kestrapy-0.0.4/kestrapy/models/property_object.py +102 -0
- kestrapy-0.0.4/kestrapy/models/property_string.py +102 -0
- kestrapy-0.0.4/kestrapy/models/query_filter.py +106 -0
- kestrapy-0.0.4/kestrapy/models/query_filter_field.py +50 -0
- kestrapy-0.0.4/kestrapy/models/query_filter_field_op.py +112 -0
- kestrapy-0.0.4/kestrapy/models/query_filter_op.py +48 -0
- kestrapy-0.0.4/kestrapy/models/query_filter_operation.py +102 -0
- kestrapy-0.0.4/kestrapy/models/query_filter_resource_field.py +110 -0
- kestrapy-0.0.4/kestrapy/models/rbac_service_role_assignment_role_origin.py +37 -0
- kestrapy-0.0.4/kestrapy/models/relation.py +103 -0
- kestrapy-0.0.4/kestrapy/models/relation_type.py +42 -0
- kestrapy-0.0.4/kestrapy/models/resource_type.py +148 -0
- kestrapy-0.0.4/kestrapy/models/resource_type_schema_extension_configuration.py +103 -0
- kestrapy-0.0.4/kestrapy/models/role.py +116 -0
- kestrapy-0.0.4/kestrapy/models/role_usage.py +100 -0
- kestrapy-0.0.4/kestrapy/models/schema_attribute.py +161 -0
- kestrapy-0.0.4/kestrapy/models/schema_attribute_mutability.py +39 -0
- kestrapy-0.0.4/kestrapy/models/schema_attribute_returned.py +39 -0
- kestrapy-0.0.4/kestrapy/models/schema_attribute_type.py +43 -0
- kestrapy-0.0.4/kestrapy/models/schema_attribute_uniqueness.py +38 -0
- kestrapy-0.0.4/kestrapy/models/schema_type.py +43 -0
- kestrapy-0.0.4/kestrapy/models/scim_extension.py +100 -0
- kestrapy-0.0.4/kestrapy/models/scim_resource.py +130 -0
- kestrapy-0.0.4/kestrapy/models/scim_resource_with_optional_id.py +130 -0
- kestrapy-0.0.4/kestrapy/models/scim_user.py +170 -0
- kestrapy-0.0.4/kestrapy/models/search_request.py +150 -0
- kestrapy-0.0.4/kestrapy/models/search_result_flow.py +106 -0
- kestrapy-0.0.4/kestrapy/models/security_integration_type.py +36 -0
- kestrapy-0.0.4/kestrapy/models/server_config.py +114 -0
- kestrapy-0.0.4/kestrapy/models/server_config_liveness.py +108 -0
- kestrapy-0.0.4/kestrapy/models/server_instance.py +119 -0
- kestrapy-0.0.4/kestrapy/models/server_instance_type.py +37 -0
- kestrapy-0.0.4/kestrapy/models/server_type.py +41 -0
- kestrapy-0.0.4/kestrapy/models/service_instance.py +147 -0
- kestrapy-0.0.4/kestrapy/models/service_instance_timestamped_event.py +108 -0
- kestrapy-0.0.4/kestrapy/models/service_provider_configuration.py +175 -0
- kestrapy-0.0.4/kestrapy/models/service_provider_configuration_authentication_schema.py +109 -0
- kestrapy-0.0.4/kestrapy/models/service_provider_configuration_authentication_schema_type.py +40 -0
- kestrapy-0.0.4/kestrapy/models/service_provider_configuration_bulk_configuration.py +104 -0
- kestrapy-0.0.4/kestrapy/models/service_provider_configuration_filter_configuration.py +102 -0
- kestrapy-0.0.4/kestrapy/models/service_provider_configuration_supported_configuration.py +100 -0
- kestrapy-0.0.4/kestrapy/models/service_service_state.py +45 -0
- kestrapy-0.0.4/kestrapy/models/service_type.py +40 -0
- kestrapy-0.0.4/kestrapy/models/service_usage.py +108 -0
- kestrapy-0.0.4/kestrapy/models/service_usage_daily_service_statistics.py +110 -0
- kestrapy-0.0.4/kestrapy/models/service_usage_daily_statistics.py +107 -0
- kestrapy-0.0.4/kestrapy/models/setup_configuration.py +110 -0
- kestrapy-0.0.4/kestrapy/models/setup_configuration_setup_data.py +108 -0
- kestrapy-0.0.4/kestrapy/models/sla.py +113 -0
- kestrapy-0.0.4/kestrapy/models/sla_behavior.py +38 -0
- kestrapy-0.0.4/kestrapy/models/sla_type.py +37 -0
- kestrapy-0.0.4/kestrapy/models/sort_order.py +37 -0
- kestrapy-0.0.4/kestrapy/models/sort_request.py +107 -0
- kestrapy-0.0.4/kestrapy/models/state.py +129 -0
- kestrapy-0.0.4/kestrapy/models/state_history.py +104 -0
- kestrapy-0.0.4/kestrapy/models/state_type.py +50 -0
- kestrapy-0.0.4/kestrapy/models/task.py +164 -0
- kestrapy-0.0.4/kestrapy/models/task_fixture.py +113 -0
- kestrapy-0.0.4/kestrapy/models/task_for_execution.py +156 -0
- kestrapy-0.0.4/kestrapy/models/task_run.py +143 -0
- kestrapy-0.0.4/kestrapy/models/task_run_attempt.py +128 -0
- kestrapy-0.0.4/kestrapy/models/tenant.py +143 -0
- kestrapy-0.0.4/kestrapy/models/tenant_interface.py +100 -0
- kestrapy-0.0.4/kestrapy/models/tenant_usage.py +100 -0
- kestrapy-0.0.4/kestrapy/models/test_state.py +39 -0
- kestrapy-0.0.4/kestrapy/models/test_suite.py +144 -0
- kestrapy-0.0.4/kestrapy/models/test_suite_controller_search_tests_last_result.py +108 -0
- kestrapy-0.0.4/kestrapy/models/test_suite_controller_test_suite_api_id.py +103 -0
- kestrapy-0.0.4/kestrapy/models/test_suite_controller_test_suite_bulk_request.py +109 -0
- kestrapy-0.0.4/kestrapy/models/test_suite_controller_tests_last_result_response.py +108 -0
- kestrapy-0.0.4/kestrapy/models/test_suite_run_result.py +124 -0
- kestrapy-0.0.4/kestrapy/models/the_labels_to_pass_to_the_execution_created.py +140 -0
- kestrapy-0.0.4/kestrapy/models/time_window.py +102 -0
- kestrapy-0.0.4/kestrapy/models/trigger.py +176 -0
- kestrapy-0.0.4/kestrapy/models/trigger_context.py +148 -0
- kestrapy-0.0.4/kestrapy/models/trigger_controller_set_disabled_request.py +111 -0
- kestrapy-0.0.4/kestrapy/models/trigger_controller_triggers.py +110 -0
- kestrapy-0.0.4/kestrapy/models/trigger_fixture.py +104 -0
- kestrapy-0.0.4/kestrapy/models/type.py +54 -0
- kestrapy-0.0.4/kestrapy/models/unit_test.py +122 -0
- kestrapy-0.0.4/kestrapy/models/unit_test_result.py +135 -0
- kestrapy-0.0.4/kestrapy/models/update_flow200_response.py +137 -0
- kestrapy-0.0.4/kestrapy/models/update_flows_in_namespace_from_json200_response.py +145 -0
- kestrapy-0.0.4/kestrapy/models/usage.py +188 -0
- kestrapy-0.0.4/kestrapy/models/usage_ee.py +198 -0
- kestrapy-0.0.4/kestrapy/models/user_group.py +107 -0
- kestrapy-0.0.4/kestrapy/models/user_group_type.py +37 -0
- kestrapy-0.0.4/kestrapy/models/user_type.py +38 -0
- kestrapy-0.0.4/kestrapy/models/user_usage.py +106 -0
- kestrapy-0.0.4/kestrapy/models/username_password_credentials.py +117 -0
- kestrapy-0.0.4/kestrapy/models/validate_constraint_violation.py +114 -0
- kestrapy-0.0.4/kestrapy/models/value_path_expression.py +106 -0
- kestrapy-0.0.4/kestrapy/models/worker_group.py +103 -0
- kestrapy-0.0.4/kestrapy/models/worker_group_fallback.py +38 -0
- kestrapy-0.0.4/kestrapy/models/worker_task_restart_strategy.py +38 -0
- kestrapy-0.0.4/kestrapy/py.typed +0 -0
- kestrapy-0.0.4/kestrapy/rest.py +258 -0
- kestrapy-0.0.4/kestrapy.egg-info/PKG-INFO +874 -0
- kestrapy-0.0.4/kestrapy.egg-info/SOURCES.txt +910 -0
- kestrapy-0.0.4/kestrapy.egg-info/dependency_links.txt +1 -0
- kestrapy-0.0.4/kestrapy.egg-info/requires.txt +4 -0
- kestrapy-0.0.4/kestrapy.egg-info/top_level.txt +2 -0
- kestrapy-0.0.4/pyproject.toml +95 -0
- kestrapy-0.0.4/setup.cfg +7 -0
- kestrapy-0.0.4/setup.py +49 -0
kestrapy-0.0.4/PKG-INFO
ADDED
|
@@ -0,0 +1,874 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: kestrapy
|
|
3
|
+
Version: 0.0.4
|
|
4
|
+
Summary: Kestra EE
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: Kestra.io
|
|
7
|
+
Author-email: OpenAPI Generator Community <team@openapitools.org>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
10
|
+
Keywords: OpenAPI,OpenAPI-Generator,Kestra EE
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
|
14
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
15
|
+
Requires-Dist: pydantic>=2
|
|
16
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
17
|
+
Dynamic: author
|
|
18
|
+
|
|
19
|
+
# @kestra-io/kestrapy
|
|
20
|
+
All API operations, except for Superadmin-only endpoints, require a tenant identifier in the HTTP path.<br/>
|
|
21
|
+
Endpoints designated as Superadmin-only are not tenant-scoped.
|
|
22
|
+
|
|
23
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
24
|
+
|
|
25
|
+
- API version: v1
|
|
26
|
+
- Package version: v0.0.4
|
|
27
|
+
- Generator version: 7.14.0-SNAPSHOT
|
|
28
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
29
|
+
|
|
30
|
+
## Requirements.
|
|
31
|
+
|
|
32
|
+
Python 3.9+
|
|
33
|
+
|
|
34
|
+
## Installation & Usage
|
|
35
|
+
### pip install
|
|
36
|
+
|
|
37
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
38
|
+
|
|
39
|
+
```sh
|
|
40
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
|
41
|
+
```
|
|
42
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
|
43
|
+
|
|
44
|
+
Then import the package:
|
|
45
|
+
```python
|
|
46
|
+
import kestrapy
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Setuptools
|
|
50
|
+
|
|
51
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
52
|
+
|
|
53
|
+
```sh
|
|
54
|
+
python setup.py install --user
|
|
55
|
+
```
|
|
56
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
57
|
+
|
|
58
|
+
Then import the package:
|
|
59
|
+
```python
|
|
60
|
+
import kestrapy
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Tests
|
|
64
|
+
|
|
65
|
+
Execute `pytest` to run the tests.
|
|
66
|
+
|
|
67
|
+
## Getting Started
|
|
68
|
+
|
|
69
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
70
|
+
|
|
71
|
+
```python
|
|
72
|
+
|
|
73
|
+
import kestrapy
|
|
74
|
+
from kestrapy.rest import ApiException
|
|
75
|
+
from pprint import pprint
|
|
76
|
+
|
|
77
|
+
# Defining the host is optional and defaults to http://localhost
|
|
78
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
79
|
+
configuration = kestrapy.Configuration(
|
|
80
|
+
host = "http://localhost"
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
# Enter a context with an instance of the API client
|
|
86
|
+
with kestrapy.ApiClient(configuration) as api_client:
|
|
87
|
+
# Create an instance of the API class
|
|
88
|
+
api_instance = kestrapy.AIApi(api_client)
|
|
89
|
+
tenant = 'tenant_example' # str |
|
|
90
|
+
flow_generation_prompt = kestrapy.FlowGenerationPrompt() # FlowGenerationPrompt | Prompt and context required for flow generation
|
|
91
|
+
|
|
92
|
+
try:
|
|
93
|
+
# Generate or regenerate a flow based on a prompt
|
|
94
|
+
api_response = api_instance.generate_flow(tenant, flow_generation_prompt)
|
|
95
|
+
print("The response of AIApi->generate_flow:\n")
|
|
96
|
+
pprint(api_response)
|
|
97
|
+
except ApiException as e:
|
|
98
|
+
print("Exception when calling AIApi->generate_flow: %s\n" % e)
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Documentation for API Endpoints
|
|
103
|
+
|
|
104
|
+
All URIs are relative to *http://localhost*
|
|
105
|
+
|
|
106
|
+
Class | Method | HTTP request | Description
|
|
107
|
+
------------ | ------------- | ------------- | -------------
|
|
108
|
+
*AIApi* | [**generate_flow**](docs/AIApi.md#generate_flow) | **POST** /api/v1/{tenant}/ai/generate/flow | Generate or regenerate a flow based on a prompt
|
|
109
|
+
*AppsApi* | [**bulk_delete_apps**](docs/AppsApi.md#bulk_delete_apps) | **DELETE** /api/v1/{tenant}/apps | Delete existing apps
|
|
110
|
+
*AppsApi* | [**bulk_disable_apps**](docs/AppsApi.md#bulk_disable_apps) | **POST** /api/v1/{tenant}/apps/disable | Disable existing apps
|
|
111
|
+
*AppsApi* | [**bulk_enable_apps**](docs/AppsApi.md#bulk_enable_apps) | **POST** /api/v1/{tenant}/apps/enable | Enable existing apps
|
|
112
|
+
*AppsApi* | [**bulk_export_apps**](docs/AppsApi.md#bulk_export_apps) | **POST** /api/v1/{tenant}/apps/export | Export apps as a ZIP archive of YAML sources.
|
|
113
|
+
*AppsApi* | [**create_app**](docs/AppsApi.md#create_app) | **POST** /api/v1/{tenant}/apps | Create a new app
|
|
114
|
+
*AppsApi* | [**delete_app**](docs/AppsApi.md#delete_app) | **DELETE** /api/v1/{tenant}/apps/{uid} | Delete an existing app
|
|
115
|
+
*AppsApi* | [**disable_app**](docs/AppsApi.md#disable_app) | **POST** /api/v1/{tenant}/apps/{uid}/disable | Disable the app.
|
|
116
|
+
*AppsApi* | [**dispatch_app**](docs/AppsApi.md#dispatch_app) | **POST** /api/v1/{tenant}/apps/view/{id}/dispatch/{dispatch} | Dispatch for a given app.
|
|
117
|
+
*AppsApi* | [**download_file_from_app_execution**](docs/AppsApi.md#download_file_from_app_execution) | **GET** /api/v1/{tenant}/apps/view/{id}/file/download | Download file from an app execution
|
|
118
|
+
*AppsApi* | [**enable_app**](docs/AppsApi.md#enable_app) | **POST** /api/v1/{tenant}/apps/{uid}/enable | Enable the app.
|
|
119
|
+
*AppsApi* | [**get_app**](docs/AppsApi.md#get_app) | **GET** /api/v1/{tenant}/apps/{uid} | Retrieve an app
|
|
120
|
+
*AppsApi* | [**get_file_meta_from_app_execution**](docs/AppsApi.md#get_file_meta_from_app_execution) | **GET** /api/v1/{tenant}/apps/view/{id}/file/meta | Get file meta information from an app execution
|
|
121
|
+
*AppsApi* | [**get_file_preview_from_app_execution**](docs/AppsApi.md#get_file_preview_from_app_execution) | **GET** /api/v1/{tenant}/apps/view/{id}/file/preview | Get file preview from an app execution
|
|
122
|
+
*AppsApi* | [**get_logs_from_app_execution**](docs/AppsApi.md#get_logs_from_app_execution) | **GET** /api/v1/{tenant}/apps/view/{uid}/logs/download | Download logs for an app execution
|
|
123
|
+
*AppsApi* | [**get_stream_events_from_app**](docs/AppsApi.md#get_stream_events_from_app) | **GET** /api/v1/{tenant}/apps/view/{id}/streams/{stream} | Get an event stream from a given app.
|
|
124
|
+
*AppsApi* | [**list_tags**](docs/AppsApi.md#list_tags) | **GET** /api/v1/{tenant}/apps/tags | Get all the app tags
|
|
125
|
+
*AppsApi* | [**open_app**](docs/AppsApi.md#open_app) | **GET** /api/v1/{tenant}/apps/view/{uid} | Open an app
|
|
126
|
+
*AppsApi* | [**preview_app**](docs/AppsApi.md#preview_app) | **POST** /api/v1/{tenant}/apps/preview | Open the app for the given source
|
|
127
|
+
*AppsApi* | [**search_apps**](docs/AppsApi.md#search_apps) | **GET** /api/v1/{tenant}/apps/search | Search for apps
|
|
128
|
+
*AppsApi* | [**search_apps_from_catalog**](docs/AppsApi.md#search_apps_from_catalog) | **GET** /api/v1/{tenant}/apps/catalog | Search for apps from catalog
|
|
129
|
+
*AppsApi* | [**update_app**](docs/AppsApi.md#update_app) | **PUT** /api/v1/{tenant}/apps/{uid} | Update an existing app
|
|
130
|
+
*AuditLogsApi* | [**find_audit_log**](docs/AuditLogsApi.md#find_audit_log) | **POST** /api/v1/{tenant}/auditlogs/find | Find a specific audit log
|
|
131
|
+
*AuditLogsApi* | [**get_resource_diff_from_audit_log**](docs/AuditLogsApi.md#get_resource_diff_from_audit_log) | **GET** /api/v1/{tenant}/auditlogs/{id}/diff | Retrieve the diff between audit logs
|
|
132
|
+
*AuditLogsApi* | [**list_audit_log_from_resource_id**](docs/AuditLogsApi.md#list_audit_log_from_resource_id) | **GET** /api/v1/{tenant}/auditlogs/history/{detailId} | Find all audit logs about a specific resource.
|
|
133
|
+
*AuditLogsApi* | [**search_audit_logs**](docs/AuditLogsApi.md#search_audit_logs) | **GET** /api/v1/{tenant}/auditlogs/search | Search for audit logs
|
|
134
|
+
*AuthsApi* | [**create_api_token_for_current_user**](docs/AuthsApi.md#create_api_token_for_current_user) | **POST** /api/v1/me/api-tokens | Create API token for the authenticated user
|
|
135
|
+
*AuthsApi* | [**delete_api_token_for_current_user**](docs/AuthsApi.md#delete_api_token_for_current_user) | **DELETE** /api/v1/me/api-tokens/{tokenId} | Delete API token for the authenticated user
|
|
136
|
+
*AuthsApi* | [**get_current_user**](docs/AuthsApi.md#get_current_user) | **GET** /api/v1/me | Get details about the authenticated user
|
|
137
|
+
*AuthsApi* | [**index**](docs/AuthsApi.md#index) | **GET** /api/v1/auths | Retrieve list of authentication methods
|
|
138
|
+
*AuthsApi* | [**list_api_tokens_for_current_user**](docs/AuthsApi.md#list_api_tokens_for_current_user) | **GET** /api/v1/me/api-tokens | List API tokens for authenticated user
|
|
139
|
+
*AuthsApi* | [**patch_current_user**](docs/AuthsApi.md#patch_current_user) | **PATCH** /api/v1/me | Update authenticated user details
|
|
140
|
+
*BannersApi* | [**create_banner**](docs/BannersApi.md#create_banner) | **POST** /api/v1/banners | Create an announcement banner
|
|
141
|
+
*BannersApi* | [**delete_banner**](docs/BannersApi.md#delete_banner) | **DELETE** /api/v1/banners/{id} | Delete an announcement banner
|
|
142
|
+
*BannersApi* | [**search_banners**](docs/BannersApi.md#search_banners) | **GET** /api/v1/banners/search | Retrieve all announcement banners
|
|
143
|
+
*BannersApi* | [**update_banner**](docs/BannersApi.md#update_banner) | **PUT** /api/v1/banners/{id} | Update an announcement banner
|
|
144
|
+
*BindingsApi* | [**bulk_create_binding**](docs/BindingsApi.md#bulk_create_binding) | **POST** /api/v1/{tenant}/bindings/bulk | Create multiple bindings
|
|
145
|
+
*BindingsApi* | [**create_binding**](docs/BindingsApi.md#create_binding) | **POST** /api/v1/{tenant}/bindings | Create a binding
|
|
146
|
+
*BindingsApi* | [**delete_binding**](docs/BindingsApi.md#delete_binding) | **DELETE** /api/v1/{tenant}/bindings/{id} | Delete a binding
|
|
147
|
+
*BindingsApi* | [**get_binding**](docs/BindingsApi.md#get_binding) | **GET** /api/v1/{tenant}/bindings/{id} | Retrieve a binding
|
|
148
|
+
*BindingsApi* | [**search_bindings**](docs/BindingsApi.md#search_bindings) | **GET** /api/v1/{tenant}/bindings/search | Search for bindings
|
|
149
|
+
*BlueprintTagsApi* | [**internal_blueprint_tags**](docs/BlueprintTagsApi.md#internal_blueprint_tags) | **GET** /api/v1/{tenant}/blueprints/custom/tags | List all internal blueprint tags
|
|
150
|
+
*BlueprintTagsApi* | [**list_blueprint_tags**](docs/BlueprintTagsApi.md#list_blueprint_tags) | **GET** /api/v1/{tenant}/blueprints/community/{kind}/tags | List blueprint tags matching the filter
|
|
151
|
+
*BlueprintsApi* | [**create_internal_blueprints**](docs/BlueprintsApi.md#create_internal_blueprints) | **POST** /api/v1/{tenant}/blueprints/custom | Create a new internal blueprint
|
|
152
|
+
*BlueprintsApi* | [**delete_internal_blueprints**](docs/BlueprintsApi.md#delete_internal_blueprints) | **DELETE** /api/v1/{tenant}/blueprints/custom/{id} | Delete an internal blueprint
|
|
153
|
+
*BlueprintsApi* | [**get_blueprint**](docs/BlueprintsApi.md#get_blueprint) | **GET** /api/v1/{tenant}/blueprints/community/{kind}/{id} | Retrieve a blueprint
|
|
154
|
+
*BlueprintsApi* | [**get_blueprint_graph**](docs/BlueprintsApi.md#get_blueprint_graph) | **GET** /api/v1/{tenant}/blueprints/community/{kind}/{id}/graph | Retrieve a blueprint graph
|
|
155
|
+
*BlueprintsApi* | [**get_blueprint_source**](docs/BlueprintsApi.md#get_blueprint_source) | **GET** /api/v1/{tenant}/blueprints/community/{kind}/{id}/source | Retrieve a blueprint source code
|
|
156
|
+
*BlueprintsApi* | [**internal_blueprint**](docs/BlueprintsApi.md#internal_blueprint) | **GET** /api/v1/{tenant}/blueprints/custom/{id} | Retrieve an internal blueprint
|
|
157
|
+
*BlueprintsApi* | [**internal_blueprint_flow**](docs/BlueprintsApi.md#internal_blueprint_flow) | **GET** /api/v1/{tenant}/blueprints/custom/{id}/source | Retrieve an internal blueprint source code
|
|
158
|
+
*BlueprintsApi* | [**search_blueprints**](docs/BlueprintsApi.md#search_blueprints) | **GET** /api/v1/{tenant}/blueprints/community/{kind} | List all blueprints
|
|
159
|
+
*BlueprintsApi* | [**search_internal_blueprints**](docs/BlueprintsApi.md#search_internal_blueprints) | **GET** /api/v1/{tenant}/blueprints/custom | List all internal blueprints
|
|
160
|
+
*BlueprintsApi* | [**update_internal_blueprints**](docs/BlueprintsApi.md#update_internal_blueprints) | **PUT** /api/v1/{tenant}/blueprints/custom/{id} | Update an internal blueprint
|
|
161
|
+
*ClusterApi* | [**enter_maintenance**](docs/ClusterApi.md#enter_maintenance) | **POST** /api/v1/instance/maintenance/enter | Enter cluster maintenance mode
|
|
162
|
+
*ClusterApi* | [**exit_maintenance**](docs/ClusterApi.md#exit_maintenance) | **POST** /api/v1/instance/maintenance/exit | Exit cluster maintenance mode
|
|
163
|
+
*DashboardsApi* | [**create_dashboard**](docs/DashboardsApi.md#create_dashboard) | **POST** /api/v1/{tenant}/dashboards | Create a dashboard from yaml source
|
|
164
|
+
*DashboardsApi* | [**delete_dashboard**](docs/DashboardsApi.md#delete_dashboard) | **DELETE** /api/v1/{tenant}/dashboards/{id} | Delete a dashboard
|
|
165
|
+
*DashboardsApi* | [**export_chart_to_csv**](docs/DashboardsApi.md#export_chart_to_csv) | **POST** /api/v1/{tenant}/dashboards/charts/export/to-csv | Export a table chart data to CSV
|
|
166
|
+
*DashboardsApi* | [**export_dashboard_chart_data_to_csv**](docs/DashboardsApi.md#export_dashboard_chart_data_to_csv) | **POST** /api/v1/{tenant}/dashboards/{id}/charts/{chartId}/export/to-csv | Export a dashboard chart data to CSV
|
|
167
|
+
*DashboardsApi* | [**get_dashboard**](docs/DashboardsApi.md#get_dashboard) | **GET** /api/v1/{tenant}/dashboards/{id} | Get a dashboard
|
|
168
|
+
*DashboardsApi* | [**get_dashboard_chart_data**](docs/DashboardsApi.md#get_dashboard_chart_data) | **POST** /api/v1/{tenant}/dashboards/{id}/charts/{chartId} | Generate a dashboard chart data
|
|
169
|
+
*DashboardsApi* | [**preview_chart**](docs/DashboardsApi.md#preview_chart) | **POST** /api/v1/{tenant}/dashboards/charts/preview | Preview a chart data
|
|
170
|
+
*DashboardsApi* | [**search_dashboards**](docs/DashboardsApi.md#search_dashboards) | **GET** /api/v1/{tenant}/dashboards | Search for dashboards
|
|
171
|
+
*DashboardsApi* | [**update_dashboard**](docs/DashboardsApi.md#update_dashboard) | **PUT** /api/v1/{tenant}/dashboards/{id} | Update a dashboard
|
|
172
|
+
*DashboardsApi* | [**validate_chart**](docs/DashboardsApi.md#validate_chart) | **POST** /api/v1/{tenant}/dashboards/validate/chart | Validate a chart from yaml source
|
|
173
|
+
*DashboardsApi* | [**validate_dashboard**](docs/DashboardsApi.md#validate_dashboard) | **POST** /api/v1/{tenant}/dashboards/validate | Validate dashboard from yaml source
|
|
174
|
+
*ExecutionsApi* | [**create_execution**](docs/ExecutionsApi.md#create_execution) | **POST** /api/v1/{tenant}/executions/{namespace}/{id} | Create a new execution for a flow
|
|
175
|
+
*ExecutionsApi* | [**delete_execution**](docs/ExecutionsApi.md#delete_execution) | **DELETE** /api/v1/{tenant}/executions/{executionId} | Delete an execution
|
|
176
|
+
*ExecutionsApi* | [**delete_executions_by_ids**](docs/ExecutionsApi.md#delete_executions_by_ids) | **DELETE** /api/v1/{tenant}/executions/by-ids | Delete a list of executions
|
|
177
|
+
*ExecutionsApi* | [**delete_executions_by_query**](docs/ExecutionsApi.md#delete_executions_by_query) | **DELETE** /api/v1/{tenant}/executions/by-query | Delete executions filter by query parameters
|
|
178
|
+
*ExecutionsApi* | [**download_file_from_execution**](docs/ExecutionsApi.md#download_file_from_execution) | **GET** /api/v1/{tenant}/executions/{executionId}/file | Download file for an execution
|
|
179
|
+
*ExecutionsApi* | [**eval_task_run_expression**](docs/ExecutionsApi.md#eval_task_run_expression) | **POST** /api/v1/{tenant}/executions/{executionId}/eval/{taskRunId} | Evaluate a variable expression for this taskrun
|
|
180
|
+
*ExecutionsApi* | [**follow_dependencies_executions**](docs/ExecutionsApi.md#follow_dependencies_executions) | **GET** /api/v1/{tenant}/executions/{executionId}/follow-dependencies | Follow all execution dependencies executions
|
|
181
|
+
*ExecutionsApi* | [**follow_execution**](docs/ExecutionsApi.md#follow_execution) | **GET** /api/v1/{tenant}/executions/{executionId}/follow | Follow an execution
|
|
182
|
+
*ExecutionsApi* | [**force_run_by_ids**](docs/ExecutionsApi.md#force_run_by_ids) | **POST** /api/v1/{tenant}/executions/force-run/by-ids | Force run a list of executions
|
|
183
|
+
*ExecutionsApi* | [**force_run_execution**](docs/ExecutionsApi.md#force_run_execution) | **POST** /api/v1/{tenant}/executions/{executionId}/force-run | Force run an execution
|
|
184
|
+
*ExecutionsApi* | [**force_run_executions_by_query**](docs/ExecutionsApi.md#force_run_executions_by_query) | **POST** /api/v1/{tenant}/executions/force-run/by-query | Force run executions filter by query parameters
|
|
185
|
+
*ExecutionsApi* | [**get_execution**](docs/ExecutionsApi.md#get_execution) | **GET** /api/v1/{tenant}/executions/{executionId} | Get an execution
|
|
186
|
+
*ExecutionsApi* | [**get_execution_flow_graph**](docs/ExecutionsApi.md#get_execution_flow_graph) | **GET** /api/v1/{tenant}/executions/{executionId}/graph | Generate a graph for an execution
|
|
187
|
+
*ExecutionsApi* | [**get_file_metadatas_from_execution**](docs/ExecutionsApi.md#get_file_metadatas_from_execution) | **GET** /api/v1/{tenant}/executions/{executionId}/file/metas | Get file meta information for an execution
|
|
188
|
+
*ExecutionsApi* | [**get_flow_from_execution**](docs/ExecutionsApi.md#get_flow_from_execution) | **GET** /api/v1/{tenant}/executions/flows/{namespace}/{flowId} | Get flow information's for an execution
|
|
189
|
+
*ExecutionsApi* | [**get_flow_from_execution_by_id**](docs/ExecutionsApi.md#get_flow_from_execution_by_id) | **GET** /api/v1/{tenant}/executions/{executionId}/flow | Get flow information's for an execution
|
|
190
|
+
*ExecutionsApi* | [**get_latest_executions**](docs/ExecutionsApi.md#get_latest_executions) | **POST** /api/v1/{tenant}/executions/latest | Get the latest execution for given flows
|
|
191
|
+
*ExecutionsApi* | [**kill_execution**](docs/ExecutionsApi.md#kill_execution) | **DELETE** /api/v1/{tenant}/executions/{executionId}/kill | Kill an execution
|
|
192
|
+
*ExecutionsApi* | [**kill_executions_by_ids**](docs/ExecutionsApi.md#kill_executions_by_ids) | **DELETE** /api/v1/{tenant}/executions/kill/by-ids | Kill a list of executions
|
|
193
|
+
*ExecutionsApi* | [**kill_executions_by_query**](docs/ExecutionsApi.md#kill_executions_by_query) | **DELETE** /api/v1/{tenant}/executions/kill/by-query | Kill executions filter by query parameters
|
|
194
|
+
*ExecutionsApi* | [**list_executable_distinct_namespaces**](docs/ExecutionsApi.md#list_executable_distinct_namespaces) | **GET** /api/v1/{tenant}/executions/namespaces | Get all namespaces that have executable flows
|
|
195
|
+
*ExecutionsApi* | [**list_flow_executions_by_namespace**](docs/ExecutionsApi.md#list_flow_executions_by_namespace) | **GET** /api/v1/{tenant}/executions/namespaces/{namespace}/flows | Get all flow ids for a namespace. Data returned are FlowForExecution containing minimal information about a Flow for when you are allowed to executing but not reading.
|
|
196
|
+
*ExecutionsApi* | [**pause_execution**](docs/ExecutionsApi.md#pause_execution) | **POST** /api/v1/{tenant}/executions/{executionId}/pause | Pause a running execution.
|
|
197
|
+
*ExecutionsApi* | [**pause_executions_by_ids**](docs/ExecutionsApi.md#pause_executions_by_ids) | **POST** /api/v1/{tenant}/executions/pause/by-ids | Pause a list of running executions
|
|
198
|
+
*ExecutionsApi* | [**pause_executions_by_query**](docs/ExecutionsApi.md#pause_executions_by_query) | **POST** /api/v1/{tenant}/executions/pause/by-query | Pause executions filter by query parameters
|
|
199
|
+
*ExecutionsApi* | [**preview_file_from_execution**](docs/ExecutionsApi.md#preview_file_from_execution) | **GET** /api/v1/{tenant}/executions/{executionId}/file/preview | Get file preview for an execution
|
|
200
|
+
*ExecutionsApi* | [**replay_execution**](docs/ExecutionsApi.md#replay_execution) | **POST** /api/v1/{tenant}/executions/{executionId}/replay | Create a new execution from an old one and start it from a specified task run id
|
|
201
|
+
*ExecutionsApi* | [**replay_executions_by_ids**](docs/ExecutionsApi.md#replay_executions_by_ids) | **POST** /api/v1/{tenant}/executions/replay/by-ids | Create new executions from old ones. Keep the flow revision
|
|
202
|
+
*ExecutionsApi* | [**replay_executions_by_query**](docs/ExecutionsApi.md#replay_executions_by_query) | **POST** /api/v1/{tenant}/executions/replay/by-query | Create new executions from old ones filter by query parameters. Keep the flow revision
|
|
203
|
+
*ExecutionsApi* | [**restart_execution**](docs/ExecutionsApi.md#restart_execution) | **POST** /api/v1/{tenant}/executions/{executionId}/restart | Restart a new execution from an old one
|
|
204
|
+
*ExecutionsApi* | [**restart_executions_by_ids**](docs/ExecutionsApi.md#restart_executions_by_ids) | **POST** /api/v1/{tenant}/executions/restart/by-ids | Restart a list of executions
|
|
205
|
+
*ExecutionsApi* | [**restart_executions_by_query**](docs/ExecutionsApi.md#restart_executions_by_query) | **POST** /api/v1/{tenant}/executions/restart/by-query | Restart executions filter by query parameters
|
|
206
|
+
*ExecutionsApi* | [**resume_execution**](docs/ExecutionsApi.md#resume_execution) | **POST** /api/v1/{tenant}/executions/{executionId}/resume | Resume a paused execution.
|
|
207
|
+
*ExecutionsApi* | [**resume_execution_from_breakpoint**](docs/ExecutionsApi.md#resume_execution_from_breakpoint) | **POST** /api/v1/{tenant}/executions/{executionId}/resume-from-breakpoint | Resume an execution from a breakpoint (in the 'BREAKPOINT' state).
|
|
208
|
+
*ExecutionsApi* | [**resume_executions_by_ids**](docs/ExecutionsApi.md#resume_executions_by_ids) | **POST** /api/v1/{tenant}/executions/resume/by-ids | Resume a list of paused executions
|
|
209
|
+
*ExecutionsApi* | [**resume_executions_by_query**](docs/ExecutionsApi.md#resume_executions_by_query) | **POST** /api/v1/{tenant}/executions/resume/by-query | Resume executions filter by query parameters
|
|
210
|
+
*ExecutionsApi* | [**search_executions**](docs/ExecutionsApi.md#search_executions) | **GET** /api/v1/{tenant}/executions/search | Search for executions
|
|
211
|
+
*ExecutionsApi* | [**search_executions_by_flow_id**](docs/ExecutionsApi.md#search_executions_by_flow_id) | **GET** /api/v1/{tenant}/executions | Search for executions for a flow
|
|
212
|
+
*ExecutionsApi* | [**search_task_run**](docs/ExecutionsApi.md#search_task_run) | **GET** /api/v1/{tenant}/taskruns/search | Search for taskruns, only available with the Elasticsearch repository
|
|
213
|
+
*ExecutionsApi* | [**set_labels_on_terminated_execution**](docs/ExecutionsApi.md#set_labels_on_terminated_execution) | **POST** /api/v1/{tenant}/executions/{executionId}/labels | Add or update labels of a terminated execution
|
|
214
|
+
*ExecutionsApi* | [**set_labels_on_terminated_executions_by_ids**](docs/ExecutionsApi.md#set_labels_on_terminated_executions_by_ids) | **POST** /api/v1/{tenant}/executions/labels/by-ids | Set labels on a list of executions
|
|
215
|
+
*ExecutionsApi* | [**set_labels_on_terminated_executions_by_query**](docs/ExecutionsApi.md#set_labels_on_terminated_executions_by_query) | **POST** /api/v1/{tenant}/executions/labels/by-query | Set label on executions filter by query parameters
|
|
216
|
+
*ExecutionsApi* | [**trigger_execution**](docs/ExecutionsApi.md#trigger_execution) | **POST** /api/v1/{tenant}/executions/trigger/{namespace}/{id} | Trigger a new execution for a flow
|
|
217
|
+
*ExecutionsApi* | [**trigger_execution_by_get_webhook**](docs/ExecutionsApi.md#trigger_execution_by_get_webhook) | **GET** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key} | Trigger a new execution by GET webhook trigger
|
|
218
|
+
*ExecutionsApi* | [**trigger_execution_by_post_webhook**](docs/ExecutionsApi.md#trigger_execution_by_post_webhook) | **POST** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key} | Trigger a new execution by POST webhook trigger
|
|
219
|
+
*ExecutionsApi* | [**trigger_execution_by_put_webhook**](docs/ExecutionsApi.md#trigger_execution_by_put_webhook) | **PUT** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key} | Trigger a new execution by PUT webhook trigger
|
|
220
|
+
*ExecutionsApi* | [**unqueue_execution**](docs/ExecutionsApi.md#unqueue_execution) | **POST** /api/v1/{tenant}/executions/{executionId}/unqueue | Unqueue an execution
|
|
221
|
+
*ExecutionsApi* | [**unqueue_executions_by_ids**](docs/ExecutionsApi.md#unqueue_executions_by_ids) | **POST** /api/v1/{tenant}/executions/unqueue/by-ids | Unqueue a list of executions
|
|
222
|
+
*ExecutionsApi* | [**unqueue_executions_by_query**](docs/ExecutionsApi.md#unqueue_executions_by_query) | **POST** /api/v1/{tenant}/executions/unqueue/by-query | Unqueue executions filter by query parameters
|
|
223
|
+
*ExecutionsApi* | [**update_execution_status**](docs/ExecutionsApi.md#update_execution_status) | **POST** /api/v1/{tenant}/executions/{executionId}/change-status | Change the state of an execution
|
|
224
|
+
*ExecutionsApi* | [**update_executions_status_by_ids**](docs/ExecutionsApi.md#update_executions_status_by_ids) | **POST** /api/v1/{tenant}/executions/change-status/by-ids | Change executions state by id
|
|
225
|
+
*ExecutionsApi* | [**update_executions_status_by_query**](docs/ExecutionsApi.md#update_executions_status_by_query) | **POST** /api/v1/{tenant}/executions/change-status/by-query | Change executions state by query parameters
|
|
226
|
+
*ExecutionsApi* | [**update_task_run_state**](docs/ExecutionsApi.md#update_task_run_state) | **POST** /api/v1/{tenant}/executions/{executionId}/state | Change state for a taskrun in an execution
|
|
227
|
+
*ExecutionsApi* | [**validate_new_execution_inputs**](docs/ExecutionsApi.md#validate_new_execution_inputs) | **POST** /api/v1/{tenant}/executions/{namespace}/{id}/validate | Validate the creation of a new execution for a flow
|
|
228
|
+
*ExecutionsApi* | [**validate_resume_execution_inputs**](docs/ExecutionsApi.md#validate_resume_execution_inputs) | **POST** /api/v1/{tenant}/executions/{executionId}/resume/validate | Validate inputs to resume a paused execution.
|
|
229
|
+
*FilesApi* | [**create_namespace_directory**](docs/FilesApi.md#create_namespace_directory) | **POST** /api/v1/{tenant}/namespaces/{namespace}/files/directory | Create a directory
|
|
230
|
+
*FilesApi* | [**create_namespace_file**](docs/FilesApi.md#create_namespace_file) | **POST** /api/v1/{tenant}/namespaces/{namespace}/files | Create a file
|
|
231
|
+
*FilesApi* | [**delete_file_directory**](docs/FilesApi.md#delete_file_directory) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/files | Delete a file or directory
|
|
232
|
+
*FilesApi* | [**export_namespace_files**](docs/FilesApi.md#export_namespace_files) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files/export | Export namespace files as a ZIP
|
|
233
|
+
*FilesApi* | [**get_file_content**](docs/FilesApi.md#get_file_content) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files | Get namespace file content
|
|
234
|
+
*FilesApi* | [**get_file_metadatas**](docs/FilesApi.md#get_file_metadatas) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files/stats | Get namespace file stats such as size, creation & modification dates and type
|
|
235
|
+
*FilesApi* | [**list_namespace_directory_files**](docs/FilesApi.md#list_namespace_directory_files) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files/directory | List directory content
|
|
236
|
+
*FilesApi* | [**move_file_directory**](docs/FilesApi.md#move_file_directory) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/files | Move a file or directory
|
|
237
|
+
*FilesApi* | [**search_namespace_files**](docs/FilesApi.md#search_namespace_files) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files/search | Find files which path contain the given string in their URI
|
|
238
|
+
*FlowsApi* | [**bulk_import_apps**](docs/FlowsApi.md#bulk_import_apps) | **POST** /api/v1/{tenant}/apps/import | Import apps as a ZIP archive of yaml sources or a multi-objects YAML file. When sending a Yaml that contains one or more apps, a list of index is returned. When sending a ZIP archive, a list of files that couldn't be imported is returned.
|
|
239
|
+
*FlowsApi* | [**bulk_update_flows**](docs/FlowsApi.md#bulk_update_flows) | **POST** /api/v1/{tenant}/flows/bulk | Update from multiples yaml sources
|
|
240
|
+
*FlowsApi* | [**create_flow**](docs/FlowsApi.md#create_flow) | **POST** /api/v1/{tenant}/flows | Create a flow from yaml source
|
|
241
|
+
*FlowsApi* | [**delete_flow**](docs/FlowsApi.md#delete_flow) | **DELETE** /api/v1/{tenant}/flows/{namespace}/{id} | Delete a flow
|
|
242
|
+
*FlowsApi* | [**delete_flows_by_ids**](docs/FlowsApi.md#delete_flows_by_ids) | **DELETE** /api/v1/{tenant}/flows/delete/by-ids | Delete flows by their IDs.
|
|
243
|
+
*FlowsApi* | [**delete_flows_by_query**](docs/FlowsApi.md#delete_flows_by_query) | **DELETE** /api/v1/{tenant}/flows/delete/by-query | Delete flows returned by the query parameters.
|
|
244
|
+
*FlowsApi* | [**disable_flows_by_ids**](docs/FlowsApi.md#disable_flows_by_ids) | **POST** /api/v1/{tenant}/flows/disable/by-ids | Disable flows by their IDs.
|
|
245
|
+
*FlowsApi* | [**disable_flows_by_query**](docs/FlowsApi.md#disable_flows_by_query) | **POST** /api/v1/{tenant}/flows/disable/by-query | Disable flows returned by the query parameters.
|
|
246
|
+
*FlowsApi* | [**enable_flows_by_ids**](docs/FlowsApi.md#enable_flows_by_ids) | **POST** /api/v1/{tenant}/flows/enable/by-ids | Enable flows by their IDs.
|
|
247
|
+
*FlowsApi* | [**enable_flows_by_query**](docs/FlowsApi.md#enable_flows_by_query) | **POST** /api/v1/{tenant}/flows/enable/by-query | Enable flows returned by the query parameters.
|
|
248
|
+
*FlowsApi* | [**export_flows_by_ids**](docs/FlowsApi.md#export_flows_by_ids) | **POST** /api/v1/{tenant}/flows/export/by-ids | Export flows as a ZIP archive of yaml sources.
|
|
249
|
+
*FlowsApi* | [**export_flows_by_query**](docs/FlowsApi.md#export_flows_by_query) | **GET** /api/v1/{tenant}/flows/export/by-query | Export flows as a ZIP archive of yaml sources.
|
|
250
|
+
*FlowsApi* | [**generate_flow_graph**](docs/FlowsApi.md#generate_flow_graph) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/graph | Generate a graph for a flow
|
|
251
|
+
*FlowsApi* | [**generate_flow_graph_from_source**](docs/FlowsApi.md#generate_flow_graph_from_source) | **POST** /api/v1/{tenant}/flows/graph | Generate a graph for a flow source
|
|
252
|
+
*FlowsApi* | [**get_flow**](docs/FlowsApi.md#get_flow) | **GET** /api/v1/{tenant}/flows/{namespace}/{id} | Get a flow
|
|
253
|
+
*FlowsApi* | [**get_flow_dependencies**](docs/FlowsApi.md#get_flow_dependencies) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/dependencies | Get flow dependencies
|
|
254
|
+
*FlowsApi* | [**get_flow_dependencies_from_namespace**](docs/FlowsApi.md#get_flow_dependencies_from_namespace) | **GET** /api/v1/{tenant}/namespaces/{namespace}/dependencies | Retrieve flow dependencies
|
|
255
|
+
*FlowsApi* | [**get_task_from_flow**](docs/FlowsApi.md#get_task_from_flow) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/tasks/{taskId} | Get a flow task
|
|
256
|
+
*FlowsApi* | [**import_flows**](docs/FlowsApi.md#import_flows) | **POST** /api/v1/{tenant}/flows/import | Import flows as a ZIP archive of yaml sources or a multi-objects YAML file. When sending a Yaml that contains one or more flows, a list of index is returned. When sending a ZIP archive, a list of files that couldn't be imported is returned.
|
|
257
|
+
*FlowsApi* | [**list_distinct_namespaces**](docs/FlowsApi.md#list_distinct_namespaces) | **GET** /api/v1/{tenant}/flows/distinct-namespaces | List all distinct namespaces
|
|
258
|
+
*FlowsApi* | [**list_flow_revisions**](docs/FlowsApi.md#list_flow_revisions) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/revisions | Get revisions for a flow
|
|
259
|
+
*FlowsApi* | [**list_flows_by_namespace**](docs/FlowsApi.md#list_flows_by_namespace) | **GET** /api/v1/{tenant}/flows/{namespace} | Retrieve all flows from a given namespace
|
|
260
|
+
*FlowsApi* | [**search_flows**](docs/FlowsApi.md#search_flows) | **GET** /api/v1/{tenant}/flows/search | Search for flows
|
|
261
|
+
*FlowsApi* | [**search_flows_by_source_code**](docs/FlowsApi.md#search_flows_by_source_code) | **GET** /api/v1/{tenant}/flows/source | Search for flows source code
|
|
262
|
+
*FlowsApi* | [**update_flow**](docs/FlowsApi.md#update_flow) | **PUT** /api/v1/{tenant}/flows/{namespace}/{id} | Update a flow
|
|
263
|
+
*FlowsApi* | [**update_flows_in_namespace_from_json**](docs/FlowsApi.md#update_flows_in_namespace_from_json) | **POST** /api/v1/{tenant}/flows/{namespace} | Update a complete namespace from json object
|
|
264
|
+
*FlowsApi* | [**update_task**](docs/FlowsApi.md#update_task) | **PATCH** /api/v1/{tenant}/flows/{namespace}/{id}/{taskId} | Update a single task on a flow
|
|
265
|
+
*FlowsApi* | [**validate_flows**](docs/FlowsApi.md#validate_flows) | **POST** /api/v1/{tenant}/flows/validate | Validate a list of flows
|
|
266
|
+
*FlowsApi* | [**validate_task**](docs/FlowsApi.md#validate_task) | **POST** /api/v1/{tenant}/flows/validate/task | Validate a task
|
|
267
|
+
*FlowsApi* | [**validate_trigger**](docs/FlowsApi.md#validate_trigger) | **POST** /api/v1/{tenant}/flows/validate/trigger | Validate trigger
|
|
268
|
+
*GroupsApi* | [**add_user_to_group**](docs/GroupsApi.md#add_user_to_group) | **PUT** /api/v1/{tenant}/groups/{id}/members/{userId} | Add a user to a group
|
|
269
|
+
*GroupsApi* | [**autocomplete_groups**](docs/GroupsApi.md#autocomplete_groups) | **POST** /api/v1/{tenant}/groups/autocomplete | List groups for autocomplete
|
|
270
|
+
*GroupsApi* | [**create_group**](docs/GroupsApi.md#create_group) | **POST** /api/v1/{tenant}/groups | Create a group
|
|
271
|
+
*GroupsApi* | [**delete_group**](docs/GroupsApi.md#delete_group) | **DELETE** /api/v1/{tenant}/groups/{id} | Delete a group
|
|
272
|
+
*GroupsApi* | [**delete_user_from_group**](docs/GroupsApi.md#delete_user_from_group) | **DELETE** /api/v1/{tenant}/groups/{id}/members/{userId} | Remove a user from a group
|
|
273
|
+
*GroupsApi* | [**get_group**](docs/GroupsApi.md#get_group) | **GET** /api/v1/{tenant}/groups/{id} | Retrieve a group
|
|
274
|
+
*GroupsApi* | [**list_group_ids**](docs/GroupsApi.md#list_group_ids) | **POST** /api/v1/{tenant}/groups/ids | List groups by ids
|
|
275
|
+
*GroupsApi* | [**search_group_members**](docs/GroupsApi.md#search_group_members) | **GET** /api/v1/{tenant}/groups/{id}/members | Search for users in a group
|
|
276
|
+
*GroupsApi* | [**search_groups**](docs/GroupsApi.md#search_groups) | **GET** /api/v1/{tenant}/groups/search | Search for groups
|
|
277
|
+
*GroupsApi* | [**set_user_membership_for_group**](docs/GroupsApi.md#set_user_membership_for_group) | **PUT** /api/v1/{tenant}/groups/{id}/members/membership/{userId} | Update a user's membership type in a group
|
|
278
|
+
*GroupsApi* | [**update_group**](docs/GroupsApi.md#update_group) | **PUT** /api/v1/{tenant}/groups/{id} | Update a group
|
|
279
|
+
*InvitationsApi* | [**create_invitation**](docs/InvitationsApi.md#create_invitation) | **POST** /api/v1/{tenant}/invitations | Create an invitation
|
|
280
|
+
*InvitationsApi* | [**delete_invitation**](docs/InvitationsApi.md#delete_invitation) | **DELETE** /api/v1/{tenant}/invitations/{id} | Delete an invitation
|
|
281
|
+
*InvitationsApi* | [**find_all_invitations_for_current_user**](docs/InvitationsApi.md#find_all_invitations_for_current_user) | **GET** /api/v1/me/invitations | List invitations for the authenticated user
|
|
282
|
+
*InvitationsApi* | [**get_invitation**](docs/InvitationsApi.md#get_invitation) | **GET** /api/v1/{tenant}/invitations/{id} | Retrieve an invitation
|
|
283
|
+
*InvitationsApi* | [**list_invitations_by_email**](docs/InvitationsApi.md#list_invitations_by_email) | **GET** /api/v1/{tenant}/invitations/email/{email} | Retrieve all invitations for a given email
|
|
284
|
+
*InvitationsApi* | [**search_invitations**](docs/InvitationsApi.md#search_invitations) | **GET** /api/v1/{tenant}/invitations/search | Search for invitations
|
|
285
|
+
*KVApi* | [**delete_key_value**](docs/KVApi.md#delete_key_value) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Delete a key-value pair
|
|
286
|
+
*KVApi* | [**delete_key_values**](docs/KVApi.md#delete_key_values) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/kv | Bulk-delete multiple key/value pairs from the given namespace.
|
|
287
|
+
*KVApi* | [**get_key_value**](docs/KVApi.md#get_key_value) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Get value for a key
|
|
288
|
+
*KVApi* | [**list_keys**](docs/KVApi.md#list_keys) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv | List all keys for a namespace
|
|
289
|
+
*KVApi* | [**set_key_value**](docs/KVApi.md#set_key_value) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Puts a key-value pair in store
|
|
290
|
+
*LogsApi* | [**delete_logs_from_execution**](docs/LogsApi.md#delete_logs_from_execution) | **DELETE** /api/v1/{tenant}/logs/{executionId} | Delete logs for a specific execution, taskrun or task
|
|
291
|
+
*LogsApi* | [**delete_logs_from_flow**](docs/LogsApi.md#delete_logs_from_flow) | **DELETE** /api/v1/{tenant}/logs/{namespace}/{flowId} | Delete logs for a specific execution, taskrun or task
|
|
292
|
+
*LogsApi* | [**download_logs_from_execution**](docs/LogsApi.md#download_logs_from_execution) | **GET** /api/v1/{tenant}/logs/{executionId}/download | Download logs for a specific execution, taskrun or task
|
|
293
|
+
*LogsApi* | [**follow_logs_from_execution**](docs/LogsApi.md#follow_logs_from_execution) | **GET** /api/v1/{tenant}/logs/{executionId}/follow | Follow logs for a specific execution
|
|
294
|
+
*LogsApi* | [**list_logs_from_execution**](docs/LogsApi.md#list_logs_from_execution) | **GET** /api/v1/{tenant}/logs/{executionId} | Get logs for a specific execution, taskrun or task
|
|
295
|
+
*LogsApi* | [**search_logs**](docs/LogsApi.md#search_logs) | **GET** /api/v1/{tenant}/logs/search | Search for logs
|
|
296
|
+
*MaintenanceApi* | [**enter_maintenance**](docs/MaintenanceApi.md#enter_maintenance) | **POST** /api/v1/instance/maintenance/enter | Enter cluster maintenance mode
|
|
297
|
+
*MaintenanceApi* | [**exit_maintenance**](docs/MaintenanceApi.md#exit_maintenance) | **POST** /api/v1/instance/maintenance/exit | Exit cluster maintenance mode
|
|
298
|
+
*MetricsApi* | [**aggregate_metrics_from_flow**](docs/MetricsApi.md#aggregate_metrics_from_flow) | **GET** /api/v1/{tenant}/metrics/aggregates/{namespace}/{flowId}/{metric} | Get metrics aggregations for a specific flow
|
|
299
|
+
*MetricsApi* | [**aggregate_metrics_from_task**](docs/MetricsApi.md#aggregate_metrics_from_task) | **GET** /api/v1/{tenant}/metrics/aggregates/{namespace}/{flowId}/{taskId}/{metric} | Get metrics aggregations for a specific flow
|
|
300
|
+
*MetricsApi* | [**list_flow_metrics**](docs/MetricsApi.md#list_flow_metrics) | **GET** /api/v1/{tenant}/metrics/names/{namespace}/{flowId} | Get metrics names for a specific flow
|
|
301
|
+
*MetricsApi* | [**list_task_metrics**](docs/MetricsApi.md#list_task_metrics) | **GET** /api/v1/{tenant}/metrics/names/{namespace}/{flowId}/{taskId} | Get metrics names for a specific task in a flow
|
|
302
|
+
*MetricsApi* | [**list_tasks_with_metrics**](docs/MetricsApi.md#list_tasks_with_metrics) | **GET** /api/v1/{tenant}/metrics/tasks/{namespace}/{flowId} | Get tasks id that have metrics for a specific flow, include deleted or renamed tasks
|
|
303
|
+
*MetricsApi* | [**search_by_execution**](docs/MetricsApi.md#search_by_execution) | **GET** /api/v1/{tenant}/metrics/{executionId} | Get metrics for a specific execution
|
|
304
|
+
*MiscApi* | [**create_basic_auth**](docs/MiscApi.md#create_basic_auth) | **POST** /api/v1/{tenant}/basicAuth | Configure basic authentication for the instance.
|
|
305
|
+
*MiscApi* | [**get_basic_auth_config_errors**](docs/MiscApi.md#get_basic_auth_config_errors) | **GET** /api/v1/basicAuthValidationErrors | Retrieve the instance configuration.
|
|
306
|
+
*MiscApi* | [**get_configuration**](docs/MiscApi.md#get_configuration) | **GET** /api/v1/configs | Retrieve the instance configuration.
|
|
307
|
+
*MiscApi* | [**get_usages**](docs/MiscApi.md#get_usages) | **GET** /api/v1/{tenant}/usages/all | Retrieve instance usage information
|
|
308
|
+
*MiscApi* | [**license_info**](docs/MiscApi.md#license_info) | **GET** /api/v1/license-info | Retrieve license information
|
|
309
|
+
*MiscApi* | [**list_actions**](docs/MiscApi.md#list_actions) | **GET** /api/v1/{tenant}/acls/actions | Retrieve list of actions
|
|
310
|
+
*MiscApi* | [**list_permissions**](docs/MiscApi.md#list_permissions) | **GET** /api/v1/{tenant}/acls/permissions | Retrieve list of permissions
|
|
311
|
+
*MiscApi* | [**setup_configuration**](docs/MiscApi.md#setup_configuration) | **GET** /api/v1/setup | Retrieve current setup configuration
|
|
312
|
+
*MiscApi* | [**setup_kestra**](docs/MiscApi.md#setup_kestra) | **POST** /api/v1/setup | Create the first Superadmin user
|
|
313
|
+
*MiscApi* | [**tenant_usage**](docs/MiscApi.md#tenant_usage) | **GET** /api/v1/{tenant}/usages | Retrieve usage information for the current tenant
|
|
314
|
+
*NamespacesApi* | [**autocomplete_namespaces**](docs/NamespacesApi.md#autocomplete_namespaces) | **POST** /api/v1/{tenant}/namespaces/autocomplete | List namespaces for autocomplete
|
|
315
|
+
*NamespacesApi* | [**autocomplete_namespaces_with_resource_tenantas_super_admin**](docs/NamespacesApi.md#autocomplete_namespaces_with_resource_tenantas_super_admin) | **POST** /api/v1/tenants/{resourceTenant}/namespaces/autocomplete | List namespaces for autocomplete
|
|
316
|
+
*NamespacesApi* | [**autocomplete_namespacesas_super_admin**](docs/NamespacesApi.md#autocomplete_namespacesas_super_admin) | **POST** /api/v1/tenants/namespaces/autocomplete | List namespaces for autocomplete
|
|
317
|
+
*NamespacesApi* | [**create_namespace**](docs/NamespacesApi.md#create_namespace) | **POST** /api/v1/{tenant}/namespaces | Create a namespace
|
|
318
|
+
*NamespacesApi* | [**delete_namespace**](docs/NamespacesApi.md#delete_namespace) | **DELETE** /api/v1/{tenant}/namespaces/{id} | Delete a namespace
|
|
319
|
+
*NamespacesApi* | [**delete_secret**](docs/NamespacesApi.md#delete_secret) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/secrets/{key} | Delete a secret for a namespace
|
|
320
|
+
*NamespacesApi* | [**get_inherited_secrets**](docs/NamespacesApi.md#get_inherited_secrets) | **GET** /api/v1/{tenant}/namespaces/{namespace}/inherited-secrets | List inherited secrets
|
|
321
|
+
*NamespacesApi* | [**get_namespace**](docs/NamespacesApi.md#get_namespace) | **GET** /api/v1/{tenant}/namespaces/{id} | Retrieve namespace details
|
|
322
|
+
*NamespacesApi* | [**inherited_plugin_defaults**](docs/NamespacesApi.md#inherited_plugin_defaults) | **GET** /api/v1/{tenant}/namespaces/{id}/inherited-plugindefaults | List inherited plugin defaults
|
|
323
|
+
*NamespacesApi* | [**inherited_variables**](docs/NamespacesApi.md#inherited_variables) | **GET** /api/v1/{tenant}/namespaces/{id}/inherited-variables | List inherited variables
|
|
324
|
+
*NamespacesApi* | [**list_namespace_secrets**](docs/NamespacesApi.md#list_namespace_secrets) | **GET** /api/v1/{tenant}/namespaces/{namespace}/secrets | Get secrets for a namespace
|
|
325
|
+
*NamespacesApi* | [**patch_secret**](docs/NamespacesApi.md#patch_secret) | **PATCH** /api/v1/{tenant}/namespaces/{namespace}/secrets/{key} | Patch a secret metadata for a namespace
|
|
326
|
+
*NamespacesApi* | [**put_secrets**](docs/NamespacesApi.md#put_secrets) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/secrets | Update secrets for a namespace
|
|
327
|
+
*NamespacesApi* | [**search_namespaces**](docs/NamespacesApi.md#search_namespaces) | **GET** /api/v1/{tenant}/namespaces/search | Search for namespaces
|
|
328
|
+
*NamespacesApi* | [**update_namespace**](docs/NamespacesApi.md#update_namespace) | **PUT** /api/v1/{tenant}/namespaces/{id} | Update a namespace
|
|
329
|
+
*PluginsApi* | [**get_all_input_types**](docs/PluginsApi.md#get_all_input_types) | **GET** /api/v1/plugins/inputs | Get all types for an inputs
|
|
330
|
+
*PluginsApi* | [**get_plugin_by_subgroups**](docs/PluginsApi.md#get_plugin_by_subgroups) | **GET** /api/v1/plugins/groups/subgroups | Get plugins group by subgroups
|
|
331
|
+
*PluginsApi* | [**get_plugin_documentation**](docs/PluginsApi.md#get_plugin_documentation) | **GET** /api/v1/plugins/{cls} | Get plugin documentation
|
|
332
|
+
*PluginsApi* | [**get_plugin_documentation_from_version**](docs/PluginsApi.md#get_plugin_documentation_from_version) | **GET** /api/v1/plugins/{cls}/versions/{version} | Get plugin documentation
|
|
333
|
+
*PluginsApi* | [**get_plugin_group_icons**](docs/PluginsApi.md#get_plugin_group_icons) | **GET** /api/v1/plugins/icons/groups | Get plugins icons
|
|
334
|
+
*PluginsApi* | [**get_plugin_icons**](docs/PluginsApi.md#get_plugin_icons) | **GET** /api/v1/plugins/icons | Get plugins icons
|
|
335
|
+
*PluginsApi* | [**get_plugin_versions**](docs/PluginsApi.md#get_plugin_versions) | **GET** /api/v1/plugins/{cls}/versions | Get all versions for a plugin
|
|
336
|
+
*PluginsApi* | [**get_properties_from_type**](docs/PluginsApi.md#get_properties_from_type) | **GET** /api/v1/plugins/properties/{type} | Get the properties part of the JSON schema for a type
|
|
337
|
+
*PluginsApi* | [**get_schema_from_input_type**](docs/PluginsApi.md#get_schema_from_input_type) | **GET** /api/v1/plugins/inputs/{type} | Get the JSON schema for an input type
|
|
338
|
+
*PluginsApi* | [**get_schemas_from_type**](docs/PluginsApi.md#get_schemas_from_type) | **GET** /api/v1/plugins/schemas/{type} | Get the JSON schema for a type
|
|
339
|
+
*PluginsApi* | [**get_versioned_plugin_details**](docs/PluginsApi.md#get_versioned_plugin_details) | **GET** /api/v1/instance/versioned-plugins/{groupId}/{artifactId} | Retrieve details of a plugin artifact
|
|
340
|
+
*PluginsApi* | [**get_versioned_plugin_details_from_version**](docs/PluginsApi.md#get_versioned_plugin_details_from_version) | **GET** /api/v1/instance/versioned-plugins/{groupId}/{artifactId}/{version} | Retrieve details of a specific plugin artifact version
|
|
341
|
+
*PluginsApi* | [**install_versioned_plugins**](docs/PluginsApi.md#install_versioned_plugins) | **POST** /api/v1/instance/versioned-plugins/install | Install specified plugin artifacts
|
|
342
|
+
*PluginsApi* | [**list_available_versioned_plugins**](docs/PluginsApi.md#list_available_versioned_plugins) | **GET** /api/v1/instance/versioned-plugins/available | List available plugin artifacts
|
|
343
|
+
*PluginsApi* | [**list_plugins**](docs/PluginsApi.md#list_plugins) | **GET** /api/v1/plugins | Get list of plugins
|
|
344
|
+
*PluginsApi* | [**list_versioned_plugin**](docs/PluginsApi.md#list_versioned_plugin) | **GET** /api/v1/instance/versioned-plugins | List installed plugin artifacts
|
|
345
|
+
*PluginsApi* | [**resolve_versioned_plugins**](docs/PluginsApi.md#resolve_versioned_plugins) | **POST** /api/v1/instance/versioned-plugins/resolve | Resolve versions for specified plugin artifacts
|
|
346
|
+
*PluginsApi* | [**uninstall_versioned_plugins**](docs/PluginsApi.md#uninstall_versioned_plugins) | **DELETE** /api/v1/instance/versioned-plugins/uninstall | Uninstall plugin artifacts
|
|
347
|
+
*PluginsApi* | [**upload_versioned_plugins**](docs/PluginsApi.md#upload_versioned_plugins) | **POST** /api/v1/instance/versioned-plugins/upload | Upload a plugin artifact JAR file
|
|
348
|
+
*RolesApi* | [**autocomplete_roles**](docs/RolesApi.md#autocomplete_roles) | **POST** /api/v1/{tenant}/roles/autocomplete | List roles for autocomplete
|
|
349
|
+
*RolesApi* | [**create_role**](docs/RolesApi.md#create_role) | **POST** /api/v1/{tenant}/roles | Create a role
|
|
350
|
+
*RolesApi* | [**delete_role**](docs/RolesApi.md#delete_role) | **DELETE** /api/v1/{tenant}/roles/{id} | Delete a role
|
|
351
|
+
*RolesApi* | [**get_role**](docs/RolesApi.md#get_role) | **GET** /api/v1/{tenant}/roles/{id} | Retrieve a role
|
|
352
|
+
*RolesApi* | [**list_roles_from_given_ids**](docs/RolesApi.md#list_roles_from_given_ids) | **POST** /api/v1/{tenant}/roles/ids | List roles by ids
|
|
353
|
+
*RolesApi* | [**search_roles**](docs/RolesApi.md#search_roles) | **GET** /api/v1/{tenant}/roles/search | Search for roles
|
|
354
|
+
*RolesApi* | [**update_role**](docs/RolesApi.md#update_role) | **PUT** /api/v1/{tenant}/roles/{id} | Update a role
|
|
355
|
+
*SCIMApi* | [**create_scim_resource_by_id_groups**](docs/SCIMApi.md#create_scim_resource_by_id_groups) | **POST** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups | {@inheritDoc}
|
|
356
|
+
*SCIMApi* | [**create_scim_resource_by_id_users**](docs/SCIMApi.md#create_scim_resource_by_id_users) | **POST** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users | {@inheritDoc}
|
|
357
|
+
*SCIMApi* | [**delete_groups**](docs/SCIMApi.md#delete_groups) | **DELETE** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/{id} | {@inheritDoc}
|
|
358
|
+
*SCIMApi* | [**delete_users**](docs/SCIMApi.md#delete_users) | **DELETE** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/{id} | {@inheritDoc}
|
|
359
|
+
*SCIMApi* | [**find_groups**](docs/SCIMApi.md#find_groups) | **POST** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/.search | {@inheritDoc}
|
|
360
|
+
*SCIMApi* | [**find_users**](docs/SCIMApi.md#find_users) | **POST** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/.search | {@inheritDoc}
|
|
361
|
+
*SCIMApi* | [**get_scim_resource_by_id_groups**](docs/SCIMApi.md#get_scim_resource_by_id_groups) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/{id} | {@inheritDoc}
|
|
362
|
+
*SCIMApi* | [**get_scim_resource_by_id_users**](docs/SCIMApi.md#get_scim_resource_by_id_users) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/{id} | {@inheritDoc}
|
|
363
|
+
*SCIMApi* | [**patch_groups**](docs/SCIMApi.md#patch_groups) | **PATCH** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/{id} | {@inheritDoc}
|
|
364
|
+
*SCIMApi* | [**patch_users**](docs/SCIMApi.md#patch_users) | **PATCH** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/{id} | {@inheritDoc}
|
|
365
|
+
*SCIMApi* | [**query_groups**](docs/SCIMApi.md#query_groups) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups | {@inheritDoc}
|
|
366
|
+
*SCIMApi* | [**query_users**](docs/SCIMApi.md#query_users) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users | {@inheritDoc}
|
|
367
|
+
*SCIMApi* | [**update_groups**](docs/SCIMApi.md#update_groups) | **PUT** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/{id} | {@inheritDoc}
|
|
368
|
+
*SCIMApi* | [**update_users**](docs/SCIMApi.md#update_users) | **PUT** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/{id} | {@inheritDoc}
|
|
369
|
+
*SCIMConfigurationApi* | [**get_all_resource_types**](docs/SCIMConfigurationApi.md#get_all_resource_types) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/ResourceTypes |
|
|
370
|
+
*SCIMConfigurationApi* | [**get_all_schemas**](docs/SCIMConfigurationApi.md#get_all_schemas) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Schemas |
|
|
371
|
+
*SCIMConfigurationApi* | [**get_resource_type**](docs/SCIMConfigurationApi.md#get_resource_type) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/ResourceTypes/{name} |
|
|
372
|
+
*SCIMConfigurationApi* | [**get_schema**](docs/SCIMConfigurationApi.md#get_schema) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Schemas/{uri} |
|
|
373
|
+
*SCIMConfigurationApi* | [**get_service_provider_configuration**](docs/SCIMConfigurationApi.md#get_service_provider_configuration) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/ServiceProviderConfig |
|
|
374
|
+
*SecurityIntegrationsApi* | [**create_security_integration**](docs/SecurityIntegrationsApi.md#create_security_integration) | **POST** /api/v1/{tenant}/security-integrations | Create a security integration
|
|
375
|
+
*SecurityIntegrationsApi* | [**delete_security_integration**](docs/SecurityIntegrationsApi.md#delete_security_integration) | **DELETE** /api/v1/{tenant}/security-integrations/{id} | Delete a security integration
|
|
376
|
+
*SecurityIntegrationsApi* | [**disable_security_integration**](docs/SecurityIntegrationsApi.md#disable_security_integration) | **POST** /api/v1/{tenant}/security-integrations/{id}/disable | Disable a security integration
|
|
377
|
+
*SecurityIntegrationsApi* | [**enable_security_integration**](docs/SecurityIntegrationsApi.md#enable_security_integration) | **POST** /api/v1/{tenant}/security-integrations/{id}/enable | Enable a security integration
|
|
378
|
+
*SecurityIntegrationsApi* | [**get_security_integration**](docs/SecurityIntegrationsApi.md#get_security_integration) | **GET** /api/v1/{tenant}/security-integrations/{id} | Retrieve a security integration
|
|
379
|
+
*SecurityIntegrationsApi* | [**list_security_integrations**](docs/SecurityIntegrationsApi.md#list_security_integrations) | **GET** /api/v1/{tenant}/security-integrations | List all security integrations
|
|
380
|
+
*ServiceAccountApi* | [**create_service_account**](docs/ServiceAccountApi.md#create_service_account) | **POST** /api/v1/{tenant}/service-accounts | Create a user service account
|
|
381
|
+
*ServiceAccountApi* | [**delete_service_account**](docs/ServiceAccountApi.md#delete_service_account) | **DELETE** /api/v1/{tenant}/service-accounts/{id} | Delete a service account
|
|
382
|
+
*ServiceAccountApi* | [**get_service_account**](docs/ServiceAccountApi.md#get_service_account) | **GET** /api/v1/{tenant}/service-accounts/{id} | Retrieve a service account
|
|
383
|
+
*ServiceAccountApi* | [**update_service_account**](docs/ServiceAccountApi.md#update_service_account) | **PUT** /api/v1/{tenant}/service-accounts/{id} | Update a user service account
|
|
384
|
+
*ServicesApi* | [**get_active_services**](docs/ServicesApi.md#get_active_services) | **GET** /api/v1/instance/services/active | List all active services
|
|
385
|
+
*ServicesApi* | [**get_service**](docs/ServicesApi.md#get_service) | **GET** /api/v1/instance/services/{id} | Retrieve details of a specific service
|
|
386
|
+
*ServicesApi* | [**search_services**](docs/ServicesApi.md#search_services) | **GET** /api/v1/instance/services/search | Search for a service (e.g. Worker, Executor, etc)
|
|
387
|
+
*TenantAccessApi* | [**create_tenant_access**](docs/TenantAccessApi.md#create_tenant_access) | **POST** /api/v1/{tenant}/tenant-access | Create tenant access for a user
|
|
388
|
+
*TenantAccessApi* | [**create_tenant_access1**](docs/TenantAccessApi.md#create_tenant_access1) | **PUT** /api/v1/{tenant}/tenant-access/{userId} | Create tenant access for a user
|
|
389
|
+
*TenantAccessApi* | [**delete_tenant_access**](docs/TenantAccessApi.md#delete_tenant_access) | **DELETE** /api/v1/{tenant}/tenant-access/{userId} | Delete tenant access for a user
|
|
390
|
+
*TenantAccessApi* | [**get_tenant_access**](docs/TenantAccessApi.md#get_tenant_access) | **GET** /api/v1/{tenant}/tenant-access/{userId} | Retrieve tenant access for a user
|
|
391
|
+
*TenantAccessApi* | [**list_tenant_access**](docs/TenantAccessApi.md#list_tenant_access) | **GET** /api/v1/{tenant}/tenant-access | Retrieve users belonging to the tenant
|
|
392
|
+
*TenantsApi* | [**create**](docs/TenantsApi.md#create) | **POST** /api/v1/tenants | Create a tenant
|
|
393
|
+
*TenantsApi* | [**delete**](docs/TenantsApi.md#delete) | **DELETE** /api/v1/tenants/{id} | Delete a tenant and all its resources
|
|
394
|
+
*TenantsApi* | [**find**](docs/TenantsApi.md#find) | **GET** /api/v1/tenants/search | Search for tenants
|
|
395
|
+
*TenantsApi* | [**get**](docs/TenantsApi.md#get) | **GET** /api/v1/tenants/{id} | Retrieve a tenant
|
|
396
|
+
*TenantsApi* | [**get_flow_dependencies_from_tenant**](docs/TenantsApi.md#get_flow_dependencies_from_tenant) | **GET** /api/v1/{tenant}/dependencies | Get tenant dependencies
|
|
397
|
+
*TenantsApi* | [**set_logo**](docs/TenantsApi.md#set_logo) | **POST** /api/v1/tenants/{id}/logo | Set a tenant logo
|
|
398
|
+
*TenantsApi* | [**update**](docs/TenantsApi.md#update) | **PUT** /api/v1/tenants/{id} | Update a tenant
|
|
399
|
+
*TestSuitesApi* | [**create_test_suite**](docs/TestSuitesApi.md#create_test_suite) | **POST** /api/v1/{tenant}/tests | Create a test from YAML source
|
|
400
|
+
*TestSuitesApi* | [**delete_test_suite**](docs/TestSuitesApi.md#delete_test_suite) | **DELETE** /api/v1/{tenant}/tests/{namespace}/{id} | Delete a test
|
|
401
|
+
*TestSuitesApi* | [**delete_test_suites_by_ids**](docs/TestSuitesApi.md#delete_test_suites_by_ids) | **DELETE** /api/v1/{tenant}/tests/by-ids | Delete multiple tests by id
|
|
402
|
+
*TestSuitesApi* | [**disable_test_suites_by_ids**](docs/TestSuitesApi.md#disable_test_suites_by_ids) | **POST** /api/v1/{tenant}/tests/disable/by-ids | Disable multiple tests by id
|
|
403
|
+
*TestSuitesApi* | [**enable_test_suites_by_ids**](docs/TestSuitesApi.md#enable_test_suites_by_ids) | **POST** /api/v1/{tenant}/tests/enable/by-ids | Enable multiple tests by id
|
|
404
|
+
*TestSuitesApi* | [**get_test_result**](docs/TestSuitesApi.md#get_test_result) | **GET** /api/v1/{tenant}/tests/results/{id} | Get a test result
|
|
405
|
+
*TestSuitesApi* | [**get_test_suite**](docs/TestSuitesApi.md#get_test_suite) | **GET** /api/v1/{tenant}/tests/{namespace}/{id} | Retrieve a test
|
|
406
|
+
*TestSuitesApi* | [**get_tests_last_result**](docs/TestSuitesApi.md#get_tests_last_result) | **POST** /api/v1/{tenant}/tests/results/search/last | Get tests last result
|
|
407
|
+
*TestSuitesApi* | [**run_test_suite**](docs/TestSuitesApi.md#run_test_suite) | **POST** /api/v1/{tenant}/tests/{namespace}/{id}/run | Run a full test
|
|
408
|
+
*TestSuitesApi* | [**search_test_suites**](docs/TestSuitesApi.md#search_test_suites) | **GET** /api/v1/{tenant}/tests/search | Search for tests
|
|
409
|
+
*TestSuitesApi* | [**update_test_suite**](docs/TestSuitesApi.md#update_test_suite) | **PUT** /api/v1/{tenant}/tests/{namespace}/{id} | Update a test from YAML source
|
|
410
|
+
*TestSuitesApi* | [**validate_test_suite**](docs/TestSuitesApi.md#validate_test_suite) | **POST** /api/v1/{tenant}/tests/validate | Validate a test
|
|
411
|
+
*TriggersApi* | [**delete_backfill**](docs/TriggersApi.md#delete_backfill) | **POST** /api/v1/{tenant}/triggers/backfill/delete | Delete a backfill
|
|
412
|
+
*TriggersApi* | [**delete_backfill_by_ids**](docs/TriggersApi.md#delete_backfill_by_ids) | **POST** /api/v1/{tenant}/triggers/backfill/delete/by-triggers | Delete backfill for given triggers
|
|
413
|
+
*TriggersApi* | [**delete_backfill_by_query**](docs/TriggersApi.md#delete_backfill_by_query) | **POST** /api/v1/{tenant}/triggers/backfill/delete/by-query | Delete backfill for given triggers
|
|
414
|
+
*TriggersApi* | [**disabled_triggers_by_ids**](docs/TriggersApi.md#disabled_triggers_by_ids) | **POST** /api/v1/{tenant}/triggers/set-disabled/by-triggers | Disable/enable given triggers
|
|
415
|
+
*TriggersApi* | [**disabled_triggers_by_query**](docs/TriggersApi.md#disabled_triggers_by_query) | **POST** /api/v1/{tenant}/triggers/set-disabled/by-query | Disable/enable triggers by query parameters
|
|
416
|
+
*TriggersApi* | [**pause_backfill**](docs/TriggersApi.md#pause_backfill) | **PUT** /api/v1/{tenant}/triggers/backfill/pause | Pause a backfill
|
|
417
|
+
*TriggersApi* | [**pause_backfill_by_ids**](docs/TriggersApi.md#pause_backfill_by_ids) | **POST** /api/v1/{tenant}/triggers/backfill/pause/by-triggers | Pause backfill for given triggers
|
|
418
|
+
*TriggersApi* | [**pause_backfill_by_query**](docs/TriggersApi.md#pause_backfill_by_query) | **POST** /api/v1/{tenant}/triggers/backfill/pause/by-query | Pause backfill for given triggers
|
|
419
|
+
*TriggersApi* | [**restart_trigger**](docs/TriggersApi.md#restart_trigger) | **POST** /api/v1/{tenant}/triggers/{namespace}/{flowId}/{triggerId}/restart | Restart a trigger
|
|
420
|
+
*TriggersApi* | [**search_triggers**](docs/TriggersApi.md#search_triggers) | **GET** /api/v1/{tenant}/triggers/search | Search for triggers
|
|
421
|
+
*TriggersApi* | [**search_triggers_for_flow**](docs/TriggersApi.md#search_triggers_for_flow) | **GET** /api/v1/{tenant}/triggers/{namespace}/{flowId} | Get all triggers for a flow
|
|
422
|
+
*TriggersApi* | [**unlock_trigger**](docs/TriggersApi.md#unlock_trigger) | **POST** /api/v1/{tenant}/triggers/{namespace}/{flowId}/{triggerId}/unlock | Unlock a trigger
|
|
423
|
+
*TriggersApi* | [**unlock_triggers_by_ids**](docs/TriggersApi.md#unlock_triggers_by_ids) | **POST** /api/v1/{tenant}/triggers/unlock/by-triggers | Unlock given triggers
|
|
424
|
+
*TriggersApi* | [**unlock_triggers_by_query**](docs/TriggersApi.md#unlock_triggers_by_query) | **POST** /api/v1/{tenant}/triggers/unlock/by-query | Unlock triggers by query parameters
|
|
425
|
+
*TriggersApi* | [**unpause_backfill**](docs/TriggersApi.md#unpause_backfill) | **PUT** /api/v1/{tenant}/triggers/backfill/unpause | Unpause a backfill
|
|
426
|
+
*TriggersApi* | [**unpause_backfill_by_ids**](docs/TriggersApi.md#unpause_backfill_by_ids) | **POST** /api/v1/{tenant}/triggers/backfill/unpause/by-triggers | Unpause backfill for given triggers
|
|
427
|
+
*TriggersApi* | [**unpause_backfill_by_query**](docs/TriggersApi.md#unpause_backfill_by_query) | **POST** /api/v1/{tenant}/triggers/backfill/unpause/by-query | Unpause backfill for given triggers
|
|
428
|
+
*TriggersApi* | [**update_trigger**](docs/TriggersApi.md#update_trigger) | **PUT** /api/v1/{tenant}/triggers | Update a trigger
|
|
429
|
+
*UsersApi* | [**autocomplete_users**](docs/UsersApi.md#autocomplete_users) | **POST** /api/v1/{tenant}/tenant-access/autocomplete | List users for autocomplete
|
|
430
|
+
*UsersApi* | [**create_api_tokens_for_user**](docs/UsersApi.md#create_api_tokens_for_user) | **POST** /api/v1/users/{id}/api-tokens | Create new API Token for a specific user
|
|
431
|
+
*UsersApi* | [**create_api_tokens_for_user1**](docs/UsersApi.md#create_api_tokens_for_user1) | **POST** /api/v1/{tenant}/service-accounts/{id}/api-tokens | Create new API Token for a specific user
|
|
432
|
+
*UsersApi* | [**create_user**](docs/UsersApi.md#create_user) | **POST** /api/v1/users | Create a new user account
|
|
433
|
+
*UsersApi* | [**delete_api_token**](docs/UsersApi.md#delete_api_token) | **DELETE** /api/v1/users/{id}/api-tokens/{tokenId} | Delete an API Token for specific user and token id
|
|
434
|
+
*UsersApi* | [**delete_api_token1**](docs/UsersApi.md#delete_api_token1) | **DELETE** /api/v1/{tenant}/service-accounts/{id}/api-tokens/{tokenId} | Delete an API Token for specific user and token id
|
|
435
|
+
*UsersApi* | [**delete_refresh_token**](docs/UsersApi.md#delete_refresh_token) | **DELETE** /api/v1/users/{id}/refresh-token | Delete a user refresh token
|
|
436
|
+
*UsersApi* | [**delete_user**](docs/UsersApi.md#delete_user) | **DELETE** /api/v1/users/{id} | Delete a user
|
|
437
|
+
*UsersApi* | [**delete_user_auth_method**](docs/UsersApi.md#delete_user_auth_method) | **DELETE** /api/v1/users/{id}/auths/{auth} | Update user password
|
|
438
|
+
*UsersApi* | [**get_user**](docs/UsersApi.md#get_user) | **GET** /api/v1/users/{id} | Get a user
|
|
439
|
+
*UsersApi* | [**impersonate**](docs/UsersApi.md#impersonate) | **POST** /api/v1/users/{id}/impersonate | Impersonate a user
|
|
440
|
+
*UsersApi* | [**list_api_tokens**](docs/UsersApi.md#list_api_tokens) | **GET** /api/v1/users/{id}/api-tokens | List API tokens for a specific user
|
|
441
|
+
*UsersApi* | [**list_api_tokens1**](docs/UsersApi.md#list_api_tokens1) | **GET** /api/v1/{tenant}/service-accounts/{id}/api-tokens | List API tokens for a specific user
|
|
442
|
+
*UsersApi* | [**list_users**](docs/UsersApi.md#list_users) | **GET** /api/v1/users | Retrieve users
|
|
443
|
+
*UsersApi* | [**patch_user**](docs/UsersApi.md#patch_user) | **PATCH** /api/v1/users/{id} | Update user details
|
|
444
|
+
*UsersApi* | [**patch_user_demo**](docs/UsersApi.md#patch_user_demo) | **PATCH** /api/v1/users/{id}/restricted | Update user demo
|
|
445
|
+
*UsersApi* | [**patch_user_password**](docs/UsersApi.md#patch_user_password) | **PATCH** /api/v1/users/{id}/password | Update user password
|
|
446
|
+
*UsersApi* | [**patch_user_super_admin**](docs/UsersApi.md#patch_user_super_admin) | **PATCH** /api/v1/users/{id}/superadmin | Update user superadmin privileges
|
|
447
|
+
*UsersApi* | [**update_current_user_password**](docs/UsersApi.md#update_current_user_password) | **PUT** /api/v1/me/password | Update authenticated user password
|
|
448
|
+
*UsersApi* | [**update_user**](docs/UsersApi.md#update_user) | **PUT** /api/v1/users/{id} | Update a user account
|
|
449
|
+
*UsersApi* | [**update_user_groups**](docs/UsersApi.md#update_user_groups) | **PUT** /api/v1/{tenant}/users/{id}/groups | Update the list of groups a user belongs to for the given tenant
|
|
450
|
+
*WorkerGroupsApi* | [**create_worker_group**](docs/WorkerGroupsApi.md#create_worker_group) | **POST** /api/v1/instance/workergroups | Create a worker group
|
|
451
|
+
*WorkerGroupsApi* | [**delete_worker_group_by_id**](docs/WorkerGroupsApi.md#delete_worker_group_by_id) | **DELETE** /api/v1/instance/workergroups/{id} | Delete a worker group
|
|
452
|
+
*WorkerGroupsApi* | [**get_worker_group_by_id**](docs/WorkerGroupsApi.md#get_worker_group_by_id) | **GET** /api/v1/instance/workergroups/{id} | Retrieve details of a specific worker group
|
|
453
|
+
*WorkerGroupsApi* | [**list_worker_groups**](docs/WorkerGroupsApi.md#list_worker_groups) | **GET** /api/v1/instance/workergroups | List all worker groups
|
|
454
|
+
*WorkerGroupsApi* | [**update_worker_group_by_id**](docs/WorkerGroupsApi.md#update_worker_group_by_id) | **PUT** /api/v1/instance/workergroups/{id} | Update a worker group
|
|
455
|
+
*DefaultApi* | [**accept_invitation**](docs/DefaultApi.md#accept_invitation) | **POST** /api/v1/invitation/accept/{invitationId} |
|
|
456
|
+
*DefaultApi* | [**create_from_invitation**](docs/DefaultApi.md#create_from_invitation) | **POST** /api/v1/invitation/create/{invitationId} |
|
|
457
|
+
*DefaultApi* | [**forgotten_password**](docs/DefaultApi.md#forgotten_password) | **GET** /api/v1/forgotten-password | Sends an email to reset a password.
|
|
458
|
+
*DefaultApi* | [**generate**](docs/DefaultApi.md#generate) | **GET** /api/v1/{tenant}/stats/generate-reports |
|
|
459
|
+
*DefaultApi* | [**login**](docs/DefaultApi.md#login) | **POST** /login |
|
|
460
|
+
*DefaultApi* | [**reset_password**](docs/DefaultApi.md#reset_password) | **POST** /api/v1/reset-password | Change a password for given token.
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
## Documentation For Models
|
|
464
|
+
|
|
465
|
+
- [AbstractFlow](docs/AbstractFlow.md)
|
|
466
|
+
- [AbstractFlowLabels](docs/AbstractFlowLabels.md)
|
|
467
|
+
- [AbstractGraph](docs/AbstractGraph.md)
|
|
468
|
+
- [AbstractGraphBranchType](docs/AbstractGraphBranchType.md)
|
|
469
|
+
- [AbstractMetricEntryObject](docs/AbstractMetricEntryObject.md)
|
|
470
|
+
- [AbstractTrigger](docs/AbstractTrigger.md)
|
|
471
|
+
- [AbstractTriggerForExecution](docs/AbstractTriggerForExecution.md)
|
|
472
|
+
- [AbstractUser](docs/AbstractUser.md)
|
|
473
|
+
- [AbstractUserTenantIdentityProvider](docs/AbstractUserTenantIdentityProvider.md)
|
|
474
|
+
- [Action](docs/Action.md)
|
|
475
|
+
- [ApiAuth](docs/ApiAuth.md)
|
|
476
|
+
- [ApiAutocomplete](docs/ApiAutocomplete.md)
|
|
477
|
+
- [ApiGroupSummary](docs/ApiGroupSummary.md)
|
|
478
|
+
- [ApiIds](docs/ApiIds.md)
|
|
479
|
+
- [ApiRoleSummary](docs/ApiRoleSummary.md)
|
|
480
|
+
- [ApiSecretListResponse](docs/ApiSecretListResponse.md)
|
|
481
|
+
- [ApiSecretMeta](docs/ApiSecretMeta.md)
|
|
482
|
+
- [ApiSecretMetaEE](docs/ApiSecretMetaEE.md)
|
|
483
|
+
- [ApiSecretTag](docs/ApiSecretTag.md)
|
|
484
|
+
- [ApiSecretValue](docs/ApiSecretValue.md)
|
|
485
|
+
- [ApiTenant](docs/ApiTenant.md)
|
|
486
|
+
- [ApiUser](docs/ApiUser.md)
|
|
487
|
+
- [AppResponse](docs/AppResponse.md)
|
|
488
|
+
- [AppResponseUILayout](docs/AppResponseUILayout.md)
|
|
489
|
+
- [AppsControllerApiApp](docs/AppsControllerApiApp.md)
|
|
490
|
+
- [AppsControllerApiAppCatalogItem](docs/AppsControllerApiAppCatalogItem.md)
|
|
491
|
+
- [AppsControllerApiAppSource](docs/AppsControllerApiAppSource.md)
|
|
492
|
+
- [AppsControllerApiAppTags](docs/AppsControllerApiAppTags.md)
|
|
493
|
+
- [AppsControllerApiBulkImportResponse](docs/AppsControllerApiBulkImportResponse.md)
|
|
494
|
+
- [AppsControllerApiBulkImportResponseError](docs/AppsControllerApiBulkImportResponseError.md)
|
|
495
|
+
- [AppsControllerApiBulkOperationRequest](docs/AppsControllerApiBulkOperationRequest.md)
|
|
496
|
+
- [Assertion](docs/Assertion.md)
|
|
497
|
+
- [AssertionResult](docs/AssertionResult.md)
|
|
498
|
+
- [AssertionRunError](docs/AssertionRunError.md)
|
|
499
|
+
- [AttributeReference](docs/AttributeReference.md)
|
|
500
|
+
- [AuditLog](docs/AuditLog.md)
|
|
501
|
+
- [AuditLogControllerAuditLogDiff](docs/AuditLogControllerAuditLogDiff.md)
|
|
502
|
+
- [AuditLogControllerAuditLogOption](docs/AuditLogControllerAuditLogOption.md)
|
|
503
|
+
- [AuditLogControllerAuditLogWithUser](docs/AuditLogControllerAuditLogWithUser.md)
|
|
504
|
+
- [AuditLogControllerFindRequest](docs/AuditLogControllerFindRequest.md)
|
|
505
|
+
- [AuditLogDetail](docs/AuditLogDetail.md)
|
|
506
|
+
- [AuthControllerAuth](docs/AuthControllerAuth.md)
|
|
507
|
+
- [AuthControllerInvitationUserRequest](docs/AuthControllerInvitationUserRequest.md)
|
|
508
|
+
- [AuthControllerResetPasswordRequest](docs/AuthControllerResetPasswordRequest.md)
|
|
509
|
+
- [Backfill](docs/Backfill.md)
|
|
510
|
+
- [Banner](docs/Banner.md)
|
|
511
|
+
- [BannerType](docs/BannerType.md)
|
|
512
|
+
- [BaseAuditLog](docs/BaseAuditLog.md)
|
|
513
|
+
- [BaseResourcePatchRequest](docs/BaseResourcePatchRequest.md)
|
|
514
|
+
- [BaseResourceScimResource](docs/BaseResourceScimResource.md)
|
|
515
|
+
- [BaseResourceSearchRequest](docs/BaseResourceSearchRequest.md)
|
|
516
|
+
- [Binding](docs/Binding.md)
|
|
517
|
+
- [BindingType](docs/BindingType.md)
|
|
518
|
+
- [Blueprint](docs/Blueprint.md)
|
|
519
|
+
- [BlueprintControllerApiBlueprintItem](docs/BlueprintControllerApiBlueprintItem.md)
|
|
520
|
+
- [BlueprintControllerApiBlueprintItemWithSource](docs/BlueprintControllerApiBlueprintItemWithSource.md)
|
|
521
|
+
- [BlueprintControllerApiBlueprintTagItem](docs/BlueprintControllerApiBlueprintTagItem.md)
|
|
522
|
+
- [BlueprintControllerKind](docs/BlueprintControllerKind.md)
|
|
523
|
+
- [BlueprintWithFlow](docs/BlueprintWithFlow.md)
|
|
524
|
+
- [Breakpoint](docs/Breakpoint.md)
|
|
525
|
+
- [BulkErrorResponse](docs/BulkErrorResponse.md)
|
|
526
|
+
- [BulkResponse](docs/BulkResponse.md)
|
|
527
|
+
- [Cache](docs/Cache.md)
|
|
528
|
+
- [ChartChartOption](docs/ChartChartOption.md)
|
|
529
|
+
- [ChartFiltersOverrides](docs/ChartFiltersOverrides.md)
|
|
530
|
+
- [Concurrency](docs/Concurrency.md)
|
|
531
|
+
- [ConcurrencyBehavior](docs/ConcurrencyBehavior.md)
|
|
532
|
+
- [Condition](docs/Condition.md)
|
|
533
|
+
- [ConfigurationUsage](docs/ConfigurationUsage.md)
|
|
534
|
+
- [ConversionServiceProvider](docs/ConversionServiceProvider.md)
|
|
535
|
+
- [ConvertibleMultiValuesString](docs/ConvertibleMultiValuesString.md)
|
|
536
|
+
- [ConvertibleValuesListString](docs/ConvertibleValuesListString.md)
|
|
537
|
+
- [CreateApiTokenRequest](docs/CreateApiTokenRequest.md)
|
|
538
|
+
- [CreateApiTokenResponse](docs/CreateApiTokenResponse.md)
|
|
539
|
+
- [CreateSecurityIntegrationRequest](docs/CreateSecurityIntegrationRequest.md)
|
|
540
|
+
- [CrudEventType](docs/CrudEventType.md)
|
|
541
|
+
- [CustomLink](docs/CustomLink.md)
|
|
542
|
+
- [DailyExecutionStatistics](docs/DailyExecutionStatistics.md)
|
|
543
|
+
- [DailyExecutionStatisticsDuration](docs/DailyExecutionStatisticsDuration.md)
|
|
544
|
+
- [DailyExecutionStatisticsExecutionCounts](docs/DailyExecutionStatisticsExecutionCounts.md)
|
|
545
|
+
- [Dashboard](docs/Dashboard.md)
|
|
546
|
+
- [DashboardControllerPreviewRequest](docs/DashboardControllerPreviewRequest.md)
|
|
547
|
+
- [DeleteExecutionsByQueryRequest](docs/DeleteExecutionsByQueryRequest.md)
|
|
548
|
+
- [DeletedInterface](docs/DeletedInterface.md)
|
|
549
|
+
- [DependsOn](docs/DependsOn.md)
|
|
550
|
+
- [DocumentationWithSchema](docs/DocumentationWithSchema.md)
|
|
551
|
+
- [Email](docs/Email.md)
|
|
552
|
+
- [EventAppResponse](docs/EventAppResponse.md)
|
|
553
|
+
- [EventExecution](docs/EventExecution.md)
|
|
554
|
+
- [EventExecutionStatusEvent](docs/EventExecutionStatusEvent.md)
|
|
555
|
+
- [EventLogEntry](docs/EventLogEntry.md)
|
|
556
|
+
- [ExecutableTaskSubflowId](docs/ExecutableTaskSubflowId.md)
|
|
557
|
+
- [Execution](docs/Execution.md)
|
|
558
|
+
- [ExecutionControllerApiValidateExecutionInputsResponse](docs/ExecutionControllerApiValidateExecutionInputsResponse.md)
|
|
559
|
+
- [ExecutionControllerApiValidateExecutionInputsResponseApiInputAndValue](docs/ExecutionControllerApiValidateExecutionInputsResponseApiInputAndValue.md)
|
|
560
|
+
- [ExecutionControllerApiValidateExecutionInputsResponseApiInputError](docs/ExecutionControllerApiValidateExecutionInputsResponseApiInputError.md)
|
|
561
|
+
- [ExecutionControllerEvalResult](docs/ExecutionControllerEvalResult.md)
|
|
562
|
+
- [ExecutionControllerExecutionResponse](docs/ExecutionControllerExecutionResponse.md)
|
|
563
|
+
- [ExecutionControllerLastExecutionResponse](docs/ExecutionControllerLastExecutionResponse.md)
|
|
564
|
+
- [ExecutionControllerSetLabelsByIdsRequest](docs/ExecutionControllerSetLabelsByIdsRequest.md)
|
|
565
|
+
- [ExecutionControllerStateRequest](docs/ExecutionControllerStateRequest.md)
|
|
566
|
+
- [ExecutionControllerWebhookResponse](docs/ExecutionControllerWebhookResponse.md)
|
|
567
|
+
- [ExecutionKind](docs/ExecutionKind.md)
|
|
568
|
+
- [ExecutionMetadata](docs/ExecutionMetadata.md)
|
|
569
|
+
- [ExecutionRepositoryInterfaceChildFilter](docs/ExecutionRepositoryInterfaceChildFilter.md)
|
|
570
|
+
- [ExecutionRepositoryInterfaceFlowFilter](docs/ExecutionRepositoryInterfaceFlowFilter.md)
|
|
571
|
+
- [ExecutionStatusEvent](docs/ExecutionStatusEvent.md)
|
|
572
|
+
- [ExecutionTrigger](docs/ExecutionTrigger.md)
|
|
573
|
+
- [ExecutionUsage](docs/ExecutionUsage.md)
|
|
574
|
+
- [FileAttributes](docs/FileAttributes.md)
|
|
575
|
+
- [FileAttributesFileType](docs/FileAttributesFileType.md)
|
|
576
|
+
- [FileMetas](docs/FileMetas.md)
|
|
577
|
+
- [Filter](docs/Filter.md)
|
|
578
|
+
- [Fixtures](docs/Fixtures.md)
|
|
579
|
+
- [Flow](docs/Flow.md)
|
|
580
|
+
- [FlowAllOfLabels](docs/FlowAllOfLabels.md)
|
|
581
|
+
- [FlowControllerTaskValidationType](docs/FlowControllerTaskValidationType.md)
|
|
582
|
+
- [FlowForExecution](docs/FlowForExecution.md)
|
|
583
|
+
- [FlowForExecutionAllOfLabels](docs/FlowForExecutionAllOfLabels.md)
|
|
584
|
+
- [FlowGenerationPrompt](docs/FlowGenerationPrompt.md)
|
|
585
|
+
- [FlowGraph](docs/FlowGraph.md)
|
|
586
|
+
- [FlowGraphCluster](docs/FlowGraphCluster.md)
|
|
587
|
+
- [FlowGraphEdge](docs/FlowGraphEdge.md)
|
|
588
|
+
- [FlowId](docs/FlowId.md)
|
|
589
|
+
- [FlowInterface](docs/FlowInterface.md)
|
|
590
|
+
- [FlowNode](docs/FlowNode.md)
|
|
591
|
+
- [FlowRelation](docs/FlowRelation.md)
|
|
592
|
+
- [FlowScope](docs/FlowScope.md)
|
|
593
|
+
- [FlowTopologyGraph](docs/FlowTopologyGraph.md)
|
|
594
|
+
- [FlowTopologyGraphEdge](docs/FlowTopologyGraphEdge.md)
|
|
595
|
+
- [FlowUsage](docs/FlowUsage.md)
|
|
596
|
+
- [FlowWithSource](docs/FlowWithSource.md)
|
|
597
|
+
- [FlowWithSourceAllOfLabels](docs/FlowWithSourceAllOfLabels.md)
|
|
598
|
+
- [Group](docs/Group.md)
|
|
599
|
+
- [GroupIdentifier](docs/GroupIdentifier.md)
|
|
600
|
+
- [GroupIdentifierMembership](docs/GroupIdentifierMembership.md)
|
|
601
|
+
- [GroupUsage](docs/GroupUsage.md)
|
|
602
|
+
- [HostUsage](docs/HostUsage.md)
|
|
603
|
+
- [HostUsageHardware](docs/HostUsageHardware.md)
|
|
604
|
+
- [HostUsageJvm](docs/HostUsageJvm.md)
|
|
605
|
+
- [HostUsageOs](docs/HostUsageOs.md)
|
|
606
|
+
- [HttpParameters](docs/HttpParameters.md)
|
|
607
|
+
- [IAMBindingControllerApiBindingDetail](docs/IAMBindingControllerApiBindingDetail.md)
|
|
608
|
+
- [IAMBindingControllerApiBindingGroup](docs/IAMBindingControllerApiBindingGroup.md)
|
|
609
|
+
- [IAMBindingControllerApiBindingSummary](docs/IAMBindingControllerApiBindingSummary.md)
|
|
610
|
+
- [IAMBindingControllerApiBindingUser](docs/IAMBindingControllerApiBindingUser.md)
|
|
611
|
+
- [IAMBindingControllerApiCreateBindingRequest](docs/IAMBindingControllerApiCreateBindingRequest.md)
|
|
612
|
+
- [IAMBindingControllerApiRole](docs/IAMBindingControllerApiRole.md)
|
|
613
|
+
- [IAMGroupControllerApiCreateGroupRequest](docs/IAMGroupControllerApiCreateGroupRequest.md)
|
|
614
|
+
- [IAMGroupControllerApiGroupDetail](docs/IAMGroupControllerApiGroupDetail.md)
|
|
615
|
+
- [IAMGroupControllerApiGroupMember](docs/IAMGroupControllerApiGroupMember.md)
|
|
616
|
+
- [IAMGroupControllerApiGroupMembership](docs/IAMGroupControllerApiGroupMembership.md)
|
|
617
|
+
- [IAMGroupControllerApiUpdateGroupRequest](docs/IAMGroupControllerApiUpdateGroupRequest.md)
|
|
618
|
+
- [IAMInvitationControllerApiInvitationCreateRequest](docs/IAMInvitationControllerApiInvitationCreateRequest.md)
|
|
619
|
+
- [IAMInvitationControllerApiInvitationDetail](docs/IAMInvitationControllerApiInvitationDetail.md)
|
|
620
|
+
- [IAMInvitationControllerApiInvitationRole](docs/IAMInvitationControllerApiInvitationRole.md)
|
|
621
|
+
- [IAMRoleControllerApiRoleCreateOrUpdateRequest](docs/IAMRoleControllerApiRoleCreateOrUpdateRequest.md)
|
|
622
|
+
- [IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions](docs/IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions.md)
|
|
623
|
+
- [IAMRoleControllerApiRoleDetail](docs/IAMRoleControllerApiRoleDetail.md)
|
|
624
|
+
- [IAMServiceAccountControllerApiGroup](docs/IAMServiceAccountControllerApiGroup.md)
|
|
625
|
+
- [IAMServiceAccountControllerApiServiceAccountRequest](docs/IAMServiceAccountControllerApiServiceAccountRequest.md)
|
|
626
|
+
- [IAMServiceAccountControllerApiServiceAccountResponse](docs/IAMServiceAccountControllerApiServiceAccountResponse.md)
|
|
627
|
+
- [IAMTenantAccessControllerApiAuthentication](docs/IAMTenantAccessControllerApiAuthentication.md)
|
|
628
|
+
- [IAMTenantAccessControllerApiCreateTenantAccessRequest](docs/IAMTenantAccessControllerApiCreateTenantAccessRequest.md)
|
|
629
|
+
- [IAMTenantAccessControllerApiGroup](docs/IAMTenantAccessControllerApiGroup.md)
|
|
630
|
+
- [IAMTenantAccessControllerApiRoleAssignment](docs/IAMTenantAccessControllerApiRoleAssignment.md)
|
|
631
|
+
- [IAMTenantAccessControllerApiTenantAccess](docs/IAMTenantAccessControllerApiTenantAccess.md)
|
|
632
|
+
- [IAMTenantAccessControllerApiUserPermission](docs/IAMTenantAccessControllerApiUserPermission.md)
|
|
633
|
+
- [IAMTenantAccessControllerApiUserTenantAccess](docs/IAMTenantAccessControllerApiUserTenantAccess.md)
|
|
634
|
+
- [IAMTenantAccessControllerUserApiAutocomplete](docs/IAMTenantAccessControllerUserApiAutocomplete.md)
|
|
635
|
+
- [IAMUserControllerApiCreateOrUpdateUserRequest](docs/IAMUserControllerApiCreateOrUpdateUserRequest.md)
|
|
636
|
+
- [IAMUserControllerApiGroup](docs/IAMUserControllerApiGroup.md)
|
|
637
|
+
- [IAMUserControllerApiPatchRestrictedRequest](docs/IAMUserControllerApiPatchRestrictedRequest.md)
|
|
638
|
+
- [IAMUserControllerApiPatchSuperAdminRequest](docs/IAMUserControllerApiPatchSuperAdminRequest.md)
|
|
639
|
+
- [IAMUserControllerApiPatchUserPasswordRequest](docs/IAMUserControllerApiPatchUserPasswordRequest.md)
|
|
640
|
+
- [IAMUserControllerApiTenant](docs/IAMUserControllerApiTenant.md)
|
|
641
|
+
- [IAMUserControllerApiUser](docs/IAMUserControllerApiUser.md)
|
|
642
|
+
- [IAMUserControllerApiUserAuth](docs/IAMUserControllerApiUserAuth.md)
|
|
643
|
+
- [IAMUserControllerApiUserSummary](docs/IAMUserControllerApiUserSummary.md)
|
|
644
|
+
- [IAMUserGroupControllerApiUpdateUserGroupsRequest](docs/IAMUserGroupControllerApiUpdateUserGroupsRequest.md)
|
|
645
|
+
- [IdWithNamespace](docs/IdWithNamespace.md)
|
|
646
|
+
- [IdentityProvider](docs/IdentityProvider.md)
|
|
647
|
+
- [InputObject](docs/InputObject.md)
|
|
648
|
+
- [InputType](docs/InputType.md)
|
|
649
|
+
- [InstanceControllerApiActiveService](docs/InstanceControllerApiActiveService.md)
|
|
650
|
+
- [InstanceControllerApiActiveServiceList](docs/InstanceControllerApiActiveServiceList.md)
|
|
651
|
+
- [InstanceControllerApiCreateOrUpdateWorkerGroupRequest](docs/InstanceControllerApiCreateOrUpdateWorkerGroupRequest.md)
|
|
652
|
+
- [InstanceControllerApiPluginArtifact](docs/InstanceControllerApiPluginArtifact.md)
|
|
653
|
+
- [InstanceControllerApiPluginArtifactListPluginArtifact](docs/InstanceControllerApiPluginArtifactListPluginArtifact.md)
|
|
654
|
+
- [InstanceControllerApiPluginArtifactListPluginResolutionResult](docs/InstanceControllerApiPluginArtifactListPluginResolutionResult.md)
|
|
655
|
+
- [InstanceControllerApiPluginListRequest](docs/InstanceControllerApiPluginListRequest.md)
|
|
656
|
+
- [InstanceControllerApiPluginVersionDetails](docs/InstanceControllerApiPluginVersionDetails.md)
|
|
657
|
+
- [InstanceControllerApiPluginVersionDetailsApiPluginClass](docs/InstanceControllerApiPluginVersionDetailsApiPluginClass.md)
|
|
658
|
+
- [InstanceControllerApiPluginVersionDetailsApiPluginClasses](docs/InstanceControllerApiPluginVersionDetailsApiPluginClasses.md)
|
|
659
|
+
- [InstanceControllerApiPluginVersions](docs/InstanceControllerApiPluginVersions.md)
|
|
660
|
+
- [InstanceControllerApiPluginVersionsApiPluginVersionAndMetadata](docs/InstanceControllerApiPluginVersionsApiPluginVersionAndMetadata.md)
|
|
661
|
+
- [InstanceControllerApiServerInstance](docs/InstanceControllerApiServerInstance.md)
|
|
662
|
+
- [InstanceControllerApiServiceInstance](docs/InstanceControllerApiServiceInstance.md)
|
|
663
|
+
- [InstanceControllerApiWorkerGroup](docs/InstanceControllerApiWorkerGroup.md)
|
|
664
|
+
- [InstanceControllerApiWorkerGroupDetails](docs/InstanceControllerApiWorkerGroupDetails.md)
|
|
665
|
+
- [InstanceControllerApiWorkerGroupItem](docs/InstanceControllerApiWorkerGroupItem.md)
|
|
666
|
+
- [InstanceControllerApiWorkerGroupList](docs/InstanceControllerApiWorkerGroupList.md)
|
|
667
|
+
- [Invitation](docs/Invitation.md)
|
|
668
|
+
- [InvitationInvitationStatus](docs/InvitationInvitationStatus.md)
|
|
669
|
+
- [Isolation](docs/Isolation.md)
|
|
670
|
+
- [KVControllerApiDeleteBulkRequest](docs/KVControllerApiDeleteBulkRequest.md)
|
|
671
|
+
- [KVControllerApiDeleteBulkResponse](docs/KVControllerApiDeleteBulkResponse.md)
|
|
672
|
+
- [KVControllerTypedValue](docs/KVControllerTypedValue.md)
|
|
673
|
+
- [KVEntry](docs/KVEntry.md)
|
|
674
|
+
- [KVType](docs/KVType.md)
|
|
675
|
+
- [Label](docs/Label.md)
|
|
676
|
+
- [Level](docs/Level.md)
|
|
677
|
+
- [Listener](docs/Listener.md)
|
|
678
|
+
- [LogEntry](docs/LogEntry.md)
|
|
679
|
+
- [MapObjectObject](docs/MapObjectObject.md)
|
|
680
|
+
- [MeControllerApiMe](docs/MeControllerApiMe.md)
|
|
681
|
+
- [MeControllerApiProfile](docs/MeControllerApiProfile.md)
|
|
682
|
+
- [MeControllerApiTenant](docs/MeControllerApiTenant.md)
|
|
683
|
+
- [MeControllerApiUpdatePasswordRequest](docs/MeControllerApiUpdatePasswordRequest.md)
|
|
684
|
+
- [MeControllerApiUserDetailsRequest](docs/MeControllerApiUserDetailsRequest.md)
|
|
685
|
+
- [Meta](docs/Meta.md)
|
|
686
|
+
- [Metric](docs/Metric.md)
|
|
687
|
+
- [MetricAggregation](docs/MetricAggregation.md)
|
|
688
|
+
- [MetricAggregations](docs/MetricAggregations.md)
|
|
689
|
+
- [MetricEntry](docs/MetricEntry.md)
|
|
690
|
+
- [MetricTag](docs/MetricTag.md)
|
|
691
|
+
- [MiscControllerBasicAuthCredentials](docs/MiscControllerBasicAuthCredentials.md)
|
|
692
|
+
- [MiscControllerConfiguration](docs/MiscControllerConfiguration.md)
|
|
693
|
+
- [MiscControllerEEConfiguration](docs/MiscControllerEEConfiguration.md)
|
|
694
|
+
- [MiscControllerEnvironment](docs/MiscControllerEnvironment.md)
|
|
695
|
+
- [MiscControllerLicenseInfo](docs/MiscControllerLicenseInfo.md)
|
|
696
|
+
- [MiscControllerPluginIdAndVersion](docs/MiscControllerPluginIdAndVersion.md)
|
|
697
|
+
- [MiscControllerPreview](docs/MiscControllerPreview.md)
|
|
698
|
+
- [MiscControllerTenantConfigurationInfo](docs/MiscControllerTenantConfigurationInfo.md)
|
|
699
|
+
- [ModelSchema](docs/ModelSchema.md)
|
|
700
|
+
- [Name](docs/Name.md)
|
|
701
|
+
- [Namespace](docs/Namespace.md)
|
|
702
|
+
- [NamespaceAllowedNamespace](docs/NamespaceAllowedNamespace.md)
|
|
703
|
+
- [NamespaceAllowedTrigger](docs/NamespaceAllowedTrigger.md)
|
|
704
|
+
- [NamespaceLight](docs/NamespaceLight.md)
|
|
705
|
+
- [NamespaceUsage](docs/NamespaceUsage.md)
|
|
706
|
+
- [NamespaceWithDisabled](docs/NamespaceWithDisabled.md)
|
|
707
|
+
- [Output](docs/Output.md)
|
|
708
|
+
- [PageRequest](docs/PageRequest.md)
|
|
709
|
+
- [PagedResultsApiGroupSummary](docs/PagedResultsApiGroupSummary.md)
|
|
710
|
+
- [PagedResultsApiRoleSummary](docs/PagedResultsApiRoleSummary.md)
|
|
711
|
+
- [PagedResultsAppsControllerApiApp](docs/PagedResultsAppsControllerApiApp.md)
|
|
712
|
+
- [PagedResultsAppsControllerApiAppCatalogItem](docs/PagedResultsAppsControllerApiAppCatalogItem.md)
|
|
713
|
+
- [PagedResultsAuditLogControllerAuditLogWithUser](docs/PagedResultsAuditLogControllerAuditLogWithUser.md)
|
|
714
|
+
- [PagedResultsBlueprint](docs/PagedResultsBlueprint.md)
|
|
715
|
+
- [PagedResultsBlueprintControllerApiBlueprintItem](docs/PagedResultsBlueprintControllerApiBlueprintItem.md)
|
|
716
|
+
- [PagedResultsDashboard](docs/PagedResultsDashboard.md)
|
|
717
|
+
- [PagedResultsExecution](docs/PagedResultsExecution.md)
|
|
718
|
+
- [PagedResultsFlow](docs/PagedResultsFlow.md)
|
|
719
|
+
- [PagedResultsIAMBindingControllerApiBindingSummary](docs/PagedResultsIAMBindingControllerApiBindingSummary.md)
|
|
720
|
+
- [PagedResultsIAMGroupControllerApiGroupMember](docs/PagedResultsIAMGroupControllerApiGroupMember.md)
|
|
721
|
+
- [PagedResultsIAMInvitationControllerApiInvitationDetail](docs/PagedResultsIAMInvitationControllerApiInvitationDetail.md)
|
|
722
|
+
- [PagedResultsIAMTenantAccessControllerApiUserTenantAccess](docs/PagedResultsIAMTenantAccessControllerApiUserTenantAccess.md)
|
|
723
|
+
- [PagedResultsIAMUserControllerApiUserSummary](docs/PagedResultsIAMUserControllerApiUserSummary.md)
|
|
724
|
+
- [PagedResultsInstanceControllerApiPluginArtifact](docs/PagedResultsInstanceControllerApiPluginArtifact.md)
|
|
725
|
+
- [PagedResultsInstanceControllerApiServiceInstance](docs/PagedResultsInstanceControllerApiServiceInstance.md)
|
|
726
|
+
- [PagedResultsLogEntry](docs/PagedResultsLogEntry.md)
|
|
727
|
+
- [PagedResultsMapStringObject](docs/PagedResultsMapStringObject.md)
|
|
728
|
+
- [PagedResultsMetricEntry](docs/PagedResultsMetricEntry.md)
|
|
729
|
+
- [PagedResultsNamespaceWithDisabled](docs/PagedResultsNamespaceWithDisabled.md)
|
|
730
|
+
- [PagedResultsSearchResultFlow](docs/PagedResultsSearchResultFlow.md)
|
|
731
|
+
- [PagedResultsTaskRun](docs/PagedResultsTaskRun.md)
|
|
732
|
+
- [PagedResultsTenant](docs/PagedResultsTenant.md)
|
|
733
|
+
- [PagedResultsTestSuite](docs/PagedResultsTestSuite.md)
|
|
734
|
+
- [PagedResultsTrigger](docs/PagedResultsTrigger.md)
|
|
735
|
+
- [PagedResultsTriggerControllerTriggers](docs/PagedResultsTriggerControllerTriggers.md)
|
|
736
|
+
- [PatchOperation](docs/PatchOperation.md)
|
|
737
|
+
- [PatchOperationPath](docs/PatchOperationPath.md)
|
|
738
|
+
- [PatchOperationType](docs/PatchOperationType.md)
|
|
739
|
+
- [PatchRequest](docs/PatchRequest.md)
|
|
740
|
+
- [Permission](docs/Permission.md)
|
|
741
|
+
- [Plugin](docs/Plugin.md)
|
|
742
|
+
- [PluginArtifact](docs/PluginArtifact.md)
|
|
743
|
+
- [PluginArtifactMetadata](docs/PluginArtifactMetadata.md)
|
|
744
|
+
- [PluginControllerApiPluginVersions](docs/PluginControllerApiPluginVersions.md)
|
|
745
|
+
- [PluginDefault](docs/PluginDefault.md)
|
|
746
|
+
- [PluginIcon](docs/PluginIcon.md)
|
|
747
|
+
- [PluginMetric](docs/PluginMetric.md)
|
|
748
|
+
- [PluginPluginElementMetadata](docs/PluginPluginElementMetadata.md)
|
|
749
|
+
- [PluginSchema](docs/PluginSchema.md)
|
|
750
|
+
- [PluginSubGroupPluginCategory](docs/PluginSubGroupPluginCategory.md)
|
|
751
|
+
- [PluginUsage](docs/PluginUsage.md)
|
|
752
|
+
- [PreviewAppRequest](docs/PreviewAppRequest.md)
|
|
753
|
+
- [PropertyBoolean](docs/PropertyBoolean.md)
|
|
754
|
+
- [PropertyDouble](docs/PropertyDouble.md)
|
|
755
|
+
- [PropertyDuration](docs/PropertyDuration.md)
|
|
756
|
+
- [PropertyListString](docs/PropertyListString.md)
|
|
757
|
+
- [PropertyObject](docs/PropertyObject.md)
|
|
758
|
+
- [PropertyString](docs/PropertyString.md)
|
|
759
|
+
- [QueryFilter](docs/QueryFilter.md)
|
|
760
|
+
- [QueryFilterField](docs/QueryFilterField.md)
|
|
761
|
+
- [QueryFilterFieldOp](docs/QueryFilterFieldOp.md)
|
|
762
|
+
- [QueryFilterOp](docs/QueryFilterOp.md)
|
|
763
|
+
- [QueryFilterOperation](docs/QueryFilterOperation.md)
|
|
764
|
+
- [QueryFilterResourceField](docs/QueryFilterResourceField.md)
|
|
765
|
+
- [RBACServiceRoleAssignmentRoleOrigin](docs/RBACServiceRoleAssignmentRoleOrigin.md)
|
|
766
|
+
- [Relation](docs/Relation.md)
|
|
767
|
+
- [RelationType](docs/RelationType.md)
|
|
768
|
+
- [ResourceType](docs/ResourceType.md)
|
|
769
|
+
- [ResourceTypeSchemaExtensionConfiguration](docs/ResourceTypeSchemaExtensionConfiguration.md)
|
|
770
|
+
- [Role](docs/Role.md)
|
|
771
|
+
- [RoleUsage](docs/RoleUsage.md)
|
|
772
|
+
- [SLA](docs/SLA.md)
|
|
773
|
+
- [SLABehavior](docs/SLABehavior.md)
|
|
774
|
+
- [SLAType](docs/SLAType.md)
|
|
775
|
+
- [SchemaAttribute](docs/SchemaAttribute.md)
|
|
776
|
+
- [SchemaAttributeMutability](docs/SchemaAttributeMutability.md)
|
|
777
|
+
- [SchemaAttributeReturned](docs/SchemaAttributeReturned.md)
|
|
778
|
+
- [SchemaAttributeType](docs/SchemaAttributeType.md)
|
|
779
|
+
- [SchemaAttributeUniqueness](docs/SchemaAttributeUniqueness.md)
|
|
780
|
+
- [SchemaType](docs/SchemaType.md)
|
|
781
|
+
- [ScimExtension](docs/ScimExtension.md)
|
|
782
|
+
- [ScimResource](docs/ScimResource.md)
|
|
783
|
+
- [ScimResourceWithOptionalId](docs/ScimResourceWithOptionalId.md)
|
|
784
|
+
- [ScimUser](docs/ScimUser.md)
|
|
785
|
+
- [SearchRequest](docs/SearchRequest.md)
|
|
786
|
+
- [SearchResultFlow](docs/SearchResultFlow.md)
|
|
787
|
+
- [SecurityIntegrationType](docs/SecurityIntegrationType.md)
|
|
788
|
+
- [ServerConfig](docs/ServerConfig.md)
|
|
789
|
+
- [ServerConfigLiveness](docs/ServerConfigLiveness.md)
|
|
790
|
+
- [ServerInstance](docs/ServerInstance.md)
|
|
791
|
+
- [ServerInstanceType](docs/ServerInstanceType.md)
|
|
792
|
+
- [ServerType](docs/ServerType.md)
|
|
793
|
+
- [ServiceInstance](docs/ServiceInstance.md)
|
|
794
|
+
- [ServiceInstanceTimestampedEvent](docs/ServiceInstanceTimestampedEvent.md)
|
|
795
|
+
- [ServiceProviderConfiguration](docs/ServiceProviderConfiguration.md)
|
|
796
|
+
- [ServiceProviderConfigurationAuthenticationSchema](docs/ServiceProviderConfigurationAuthenticationSchema.md)
|
|
797
|
+
- [ServiceProviderConfigurationAuthenticationSchemaType](docs/ServiceProviderConfigurationAuthenticationSchemaType.md)
|
|
798
|
+
- [ServiceProviderConfigurationBulkConfiguration](docs/ServiceProviderConfigurationBulkConfiguration.md)
|
|
799
|
+
- [ServiceProviderConfigurationFilterConfiguration](docs/ServiceProviderConfigurationFilterConfiguration.md)
|
|
800
|
+
- [ServiceProviderConfigurationSupportedConfiguration](docs/ServiceProviderConfigurationSupportedConfiguration.md)
|
|
801
|
+
- [ServiceServiceState](docs/ServiceServiceState.md)
|
|
802
|
+
- [ServiceType](docs/ServiceType.md)
|
|
803
|
+
- [ServiceUsage](docs/ServiceUsage.md)
|
|
804
|
+
- [ServiceUsageDailyServiceStatistics](docs/ServiceUsageDailyServiceStatistics.md)
|
|
805
|
+
- [ServiceUsageDailyStatistics](docs/ServiceUsageDailyStatistics.md)
|
|
806
|
+
- [SetupConfiguration](docs/SetupConfiguration.md)
|
|
807
|
+
- [SetupConfigurationSetupData](docs/SetupConfigurationSetupData.md)
|
|
808
|
+
- [SortOrder](docs/SortOrder.md)
|
|
809
|
+
- [SortRequest](docs/SortRequest.md)
|
|
810
|
+
- [State](docs/State.md)
|
|
811
|
+
- [StateHistory](docs/StateHistory.md)
|
|
812
|
+
- [StateType](docs/StateType.md)
|
|
813
|
+
- [Task](docs/Task.md)
|
|
814
|
+
- [TaskFixture](docs/TaskFixture.md)
|
|
815
|
+
- [TaskForExecution](docs/TaskForExecution.md)
|
|
816
|
+
- [TaskRun](docs/TaskRun.md)
|
|
817
|
+
- [TaskRunAttempt](docs/TaskRunAttempt.md)
|
|
818
|
+
- [Tenant](docs/Tenant.md)
|
|
819
|
+
- [TenantInterface](docs/TenantInterface.md)
|
|
820
|
+
- [TenantUsage](docs/TenantUsage.md)
|
|
821
|
+
- [TestState](docs/TestState.md)
|
|
822
|
+
- [TestSuite](docs/TestSuite.md)
|
|
823
|
+
- [TestSuiteControllerSearchTestsLastResult](docs/TestSuiteControllerSearchTestsLastResult.md)
|
|
824
|
+
- [TestSuiteControllerTestSuiteApiId](docs/TestSuiteControllerTestSuiteApiId.md)
|
|
825
|
+
- [TestSuiteControllerTestSuiteBulkRequest](docs/TestSuiteControllerTestSuiteBulkRequest.md)
|
|
826
|
+
- [TestSuiteControllerTestsLastResultResponse](docs/TestSuiteControllerTestsLastResultResponse.md)
|
|
827
|
+
- [TestSuiteRunResult](docs/TestSuiteRunResult.md)
|
|
828
|
+
- [TheLabelsToPassToTheExecutionCreated](docs/TheLabelsToPassToTheExecutionCreated.md)
|
|
829
|
+
- [TimeWindow](docs/TimeWindow.md)
|
|
830
|
+
- [Trigger](docs/Trigger.md)
|
|
831
|
+
- [TriggerContext](docs/TriggerContext.md)
|
|
832
|
+
- [TriggerControllerSetDisabledRequest](docs/TriggerControllerSetDisabledRequest.md)
|
|
833
|
+
- [TriggerControllerTriggers](docs/TriggerControllerTriggers.md)
|
|
834
|
+
- [TriggerFixture](docs/TriggerFixture.md)
|
|
835
|
+
- [Type](docs/Type.md)
|
|
836
|
+
- [UnitTest](docs/UnitTest.md)
|
|
837
|
+
- [UnitTestResult](docs/UnitTestResult.md)
|
|
838
|
+
- [UpdateFlow200Response](docs/UpdateFlow200Response.md)
|
|
839
|
+
- [UpdateFlowsInNamespaceFromJson200Response](docs/UpdateFlowsInNamespaceFromJson200Response.md)
|
|
840
|
+
- [Usage](docs/Usage.md)
|
|
841
|
+
- [UsageEE](docs/UsageEE.md)
|
|
842
|
+
- [UserGroup](docs/UserGroup.md)
|
|
843
|
+
- [UserGroupType](docs/UserGroupType.md)
|
|
844
|
+
- [UserType](docs/UserType.md)
|
|
845
|
+
- [UserUsage](docs/UserUsage.md)
|
|
846
|
+
- [UsernamePasswordCredentials](docs/UsernamePasswordCredentials.md)
|
|
847
|
+
- [ValidateConstraintViolation](docs/ValidateConstraintViolation.md)
|
|
848
|
+
- [ValuePathExpression](docs/ValuePathExpression.md)
|
|
849
|
+
- [WorkerGroup](docs/WorkerGroup.md)
|
|
850
|
+
- [WorkerGroupFallback](docs/WorkerGroupFallback.md)
|
|
851
|
+
- [WorkerTaskRestartStrategy](docs/WorkerTaskRestartStrategy.md)
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
<a id="documentation-for-authorization"></a>
|
|
855
|
+
## Documentation For Authorization
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
Authentication schemes defined for the API:
|
|
859
|
+
<a id="basicAuth"></a>
|
|
860
|
+
### basicAuth
|
|
861
|
+
|
|
862
|
+
- **Type**: HTTP basic authentication
|
|
863
|
+
|
|
864
|
+
<a id="bearerAuth"></a>
|
|
865
|
+
### bearerAuth
|
|
866
|
+
|
|
867
|
+
- **Type**: Bearer authentication (Bearer)
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
## Author
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|