@kestra-io/kestra-sdk 0.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (430) hide show
  1. package/README.md +879 -0
  2. package/dist/ApiClient.js +704 -0
  3. package/dist/KestraClient.js +97 -0
  4. package/dist/api/AIApi.js +85 -0
  5. package/dist/api/AppsApi.js +1017 -0
  6. package/dist/api/AuditLogsApi.js +253 -0
  7. package/dist/api/AuthsApi.js +236 -0
  8. package/dist/api/BannersApi.js +184 -0
  9. package/dist/api/BindingsApi.js +269 -0
  10. package/dist/api/BlueprintTagsApi.js +134 -0
  11. package/dist/api/BlueprintsApi.js +528 -0
  12. package/dist/api/ClusterApi.js +100 -0
  13. package/dist/api/DashboardsApi.js +535 -0
  14. package/dist/api/DefaultApi.js +274 -0
  15. package/dist/api/ExecutionsApi.js +2942 -0
  16. package/dist/api/FilesApi.js +471 -0
  17. package/dist/api/FlowsApi.js +1509 -0
  18. package/dist/api/GroupsApi.js +567 -0
  19. package/dist/api/InvitationsApi.js +300 -0
  20. package/dist/api/KVApi.js +280 -0
  21. package/dist/api/LogsApi.js +371 -0
  22. package/dist/api/MaintenanceApi.js +100 -0
  23. package/dist/api/MetricsApi.js +393 -0
  24. package/dist/api/MiscApi.js +385 -0
  25. package/dist/api/NamespacesApi.js +653 -0
  26. package/dist/api/PluginsApi.js +755 -0
  27. package/dist/api/RolesApi.js +352 -0
  28. package/dist/api/SCIMApi.js +815 -0
  29. package/dist/api/SCIMConfigurationApi.js +264 -0
  30. package/dist/api/SCIMGroupsApi.js +423 -0
  31. package/dist/api/SCIMUsersApi.js +423 -0
  32. package/dist/api/SecurityIntegrationsApi.js +290 -0
  33. package/dist/api/ServiceAccountApi.js +213 -0
  34. package/dist/api/ServicesApi.js +164 -0
  35. package/dist/api/TenantAccessApi.js +268 -0
  36. package/dist/api/TenantsApi.js +325 -0
  37. package/dist/api/TestSuitesApi.js +594 -0
  38. package/dist/api/TriggersApi.js +885 -0
  39. package/dist/api/UsersApi.js +894 -0
  40. package/dist/api/WorkerGroupsApi.js +224 -0
  41. package/dist/index.js +2967 -0
  42. package/dist/model/AbstractFlow.js +252 -0
  43. package/dist/model/AbstractFlowLabels.js +158 -0
  44. package/dist/model/AbstractGraph.js +110 -0
  45. package/dist/model/AbstractGraphBranchType.js +63 -0
  46. package/dist/model/AbstractMetricEntryObject.js +162 -0
  47. package/dist/model/AbstractTrigger.js +264 -0
  48. package/dist/model/AbstractTriggerForExecution.js +138 -0
  49. package/dist/model/AbstractUser.js +277 -0
  50. package/dist/model/AbstractUserTenantIdentityProvider.js +157 -0
  51. package/dist/model/Action.js +68 -0
  52. package/dist/model/ApiAuth.js +113 -0
  53. package/dist/model/ApiAutocomplete.js +101 -0
  54. package/dist/model/ApiGroupSummary.js +101 -0
  55. package/dist/model/ApiIds.js +89 -0
  56. package/dist/model/ApiRoleSummary.js +117 -0
  57. package/dist/model/ApiSecretListResponse.js +148 -0
  58. package/dist/model/ApiSecretMeta.js +112 -0
  59. package/dist/model/ApiSecretMetaEE.js +166 -0
  60. package/dist/model/ApiSecretTag.js +126 -0
  61. package/dist/model/ApiSecretValue.js +168 -0
  62. package/dist/model/ApiTenant.js +315 -0
  63. package/dist/model/ApiUser.js +361 -0
  64. package/dist/model/AppResponse.js +115 -0
  65. package/dist/model/AppResponseUILayout.js +89 -0
  66. package/dist/model/AppsControllerApiApp.js +173 -0
  67. package/dist/model/AppsControllerApiAppCatalogItem.js +137 -0
  68. package/dist/model/AppsControllerApiAppSource.js +161 -0
  69. package/dist/model/AppsControllerApiAppTags.js +89 -0
  70. package/dist/model/AppsControllerApiBulkImportResponse.js +122 -0
  71. package/dist/model/AppsControllerApiBulkImportResponseError.js +101 -0
  72. package/dist/model/AppsControllerApiBulkOperationRequest.js +89 -0
  73. package/dist/model/Assertion.js +325 -0
  74. package/dist/model/AssertionResult.js +178 -0
  75. package/dist/model/AssertionRunError.js +124 -0
  76. package/dist/model/AttributeReference.js +149 -0
  77. package/dist/model/AuditLog.js +257 -0
  78. package/dist/model/AuditLogControllerAuditLogDiff.js +101 -0
  79. package/dist/model/AuditLogControllerAuditLogOption.js +109 -0
  80. package/dist/model/AuditLogControllerAuditLogWithUser.js +105 -0
  81. package/dist/model/AuditLogControllerFindRequest.js +105 -0
  82. package/dist/model/AuditLogDetail.js +149 -0
  83. package/dist/model/AuthControllerAuth.js +105 -0
  84. package/dist/model/AuthControllerInvitationUserRequest.js +140 -0
  85. package/dist/model/AuthControllerResetPasswordRequest.js +101 -0
  86. package/dist/model/Backfill.js +180 -0
  87. package/dist/model/Banner.js +169 -0
  88. package/dist/model/BannerType.js +63 -0
  89. package/dist/model/BaseAuditLog.js +195 -0
  90. package/dist/model/BaseResourcePatchRequest.js +89 -0
  91. package/dist/model/BaseResourceScimResource.js +89 -0
  92. package/dist/model/BaseResourceSearchRequest.js +89 -0
  93. package/dist/model/Binding.js +171 -0
  94. package/dist/model/BindingType.js +58 -0
  95. package/dist/model/Blueprint.js +178 -0
  96. package/dist/model/BlueprintControllerApiBlueprintItem.js +145 -0
  97. package/dist/model/BlueprintControllerApiBlueprintItemWithSource.js +196 -0
  98. package/dist/model/BlueprintControllerApiBlueprintTagItem.js +109 -0
  99. package/dist/model/BlueprintControllerKind.js +63 -0
  100. package/dist/model/BlueprintWithFlow.js +226 -0
  101. package/dist/model/Breakpoint.js +124 -0
  102. package/dist/model/BulkErrorResponse.js +97 -0
  103. package/dist/model/BulkResponse.js +85 -0
  104. package/dist/model/Cache.js +120 -0
  105. package/dist/model/ChartChartOption.js +134 -0
  106. package/dist/model/ChartFiltersOverrides.js +164 -0
  107. package/dist/model/Concurrency.js +119 -0
  108. package/dist/model/ConcurrencyBehavior.js +63 -0
  109. package/dist/model/Condition.js +112 -0
  110. package/dist/model/ConfigurationUsage.js +133 -0
  111. package/dist/model/ConversionServiceProvider.js +108 -0
  112. package/dist/model/ConvertibleMultiValuesString.js +139 -0
  113. package/dist/model/ConvertibleValuesListString.js +126 -0
  114. package/dist/model/CreateApiTokenRequest.js +144 -0
  115. package/dist/model/CreateApiTokenResponse.js +113 -0
  116. package/dist/model/CreateSecurityIntegrationRequest.js +140 -0
  117. package/dist/model/CrudEventType.js +93 -0
  118. package/dist/model/CustomLink.js +113 -0
  119. package/dist/model/DailyExecutionStatistics.js +150 -0
  120. package/dist/model/DailyExecutionStatisticsDuration.js +164 -0
  121. package/dist/model/DailyExecutionStatisticsExecutionCounts.js +197 -0
  122. package/dist/model/Dashboard.js +180 -0
  123. package/dist/model/DashboardControllerPreviewRequest.js +126 -0
  124. package/dist/model/DeleteExecutionsByQueryRequest.js +111 -0
  125. package/dist/model/DeletedInterface.js +85 -0
  126. package/dist/model/DependsOn.js +101 -0
  127. package/dist/model/DocumentationWithSchema.js +103 -0
  128. package/dist/model/Email.js +110 -0
  129. package/dist/model/EventAppResponse.js +139 -0
  130. package/dist/model/EventExecution.js +139 -0
  131. package/dist/model/EventExecutionStatusEvent.js +139 -0
  132. package/dist/model/EventLogEntry.js +139 -0
  133. package/dist/model/ExecutableTaskSubflowId.js +109 -0
  134. package/dist/model/Execution.js +407 -0
  135. package/dist/model/ExecutionControllerApiValidateExecutionInputsResponse.js +134 -0
  136. package/dist/model/ExecutionControllerApiValidateExecutionInputsResponseApiInputAndValue.js +140 -0
  137. package/dist/model/ExecutionControllerApiValidateExecutionInputsResponseApiInputError.js +89 -0
  138. package/dist/model/ExecutionControllerEvalResult.js +113 -0
  139. package/dist/model/ExecutionControllerExecutionResponse.js +505 -0
  140. package/dist/model/ExecutionControllerLastExecutionResponse.js +130 -0
  141. package/dist/model/ExecutionControllerSetLabelsByIdsRequest.js +122 -0
  142. package/dist/model/ExecutionControllerStateRequest.js +98 -0
  143. package/dist/model/ExecutionControllerWebhookResponse.js +216 -0
  144. package/dist/model/ExecutionKind.js +63 -0
  145. package/dist/model/ExecutionMetadata.js +93 -0
  146. package/dist/model/ExecutionRepositoryInterfaceChildFilter.js +58 -0
  147. package/dist/model/ExecutionRepositoryInterfaceFlowFilter.js +126 -0
  148. package/dist/model/ExecutionStatusEvent.js +139 -0
  149. package/dist/model/ExecutionTrigger.js +148 -0
  150. package/dist/model/ExecutionUsage.js +139 -0
  151. package/dist/model/FileAttributes.js +132 -0
  152. package/dist/model/FileAttributesFileType.js +58 -0
  153. package/dist/model/FileMetas.js +108 -0
  154. package/dist/model/Filter.js +97 -0
  155. package/dist/model/Fixtures.js +144 -0
  156. package/dist/model/Flow.js +601 -0
  157. package/dist/model/FlowAllOfLabels.js +158 -0
  158. package/dist/model/FlowControllerTaskValidationType.js +58 -0
  159. package/dist/model/FlowForExecution.js +447 -0
  160. package/dist/model/FlowForExecutionAllOfLabels.js +158 -0
  161. package/dist/model/FlowGenerationPrompt.js +126 -0
  162. package/dist/model/FlowGraph.js +182 -0
  163. package/dist/model/FlowGraphCluster.js +139 -0
  164. package/dist/model/FlowGraphEdge.js +115 -0
  165. package/dist/model/FlowId.js +121 -0
  166. package/dist/model/FlowInterface.js +350 -0
  167. package/dist/model/FlowNode.js +136 -0
  168. package/dist/model/FlowRelation.js +58 -0
  169. package/dist/model/FlowScope.js +58 -0
  170. package/dist/model/FlowTopologyGraph.js +140 -0
  171. package/dist/model/FlowTopologyGraphEdge.js +110 -0
  172. package/dist/model/FlowUsage.js +123 -0
  173. package/dist/model/FlowWithSource.js +695 -0
  174. package/dist/model/FlowWithSourceAllOfLabels.js +158 -0
  175. package/dist/model/Group.js +160 -0
  176. package/dist/model/GroupIdentifier.js +118 -0
  177. package/dist/model/GroupIdentifierMembership.js +58 -0
  178. package/dist/model/GroupUsage.js +85 -0
  179. package/dist/model/HostUsage.js +131 -0
  180. package/dist/model/HostUsageHardware.js +125 -0
  181. package/dist/model/HostUsageJvm.js +113 -0
  182. package/dist/model/HostUsageOs.js +125 -0
  183. package/dist/model/HttpParameters.js +152 -0
  184. package/dist/model/IAMBindingControllerApiBindingDetail.js +152 -0
  185. package/dist/model/IAMBindingControllerApiBindingGroup.js +101 -0
  186. package/dist/model/IAMBindingControllerApiBindingSummary.js +152 -0
  187. package/dist/model/IAMBindingControllerApiBindingUser.js +122 -0
  188. package/dist/model/IAMBindingControllerApiCreateBindingRequest.js +149 -0
  189. package/dist/model/IAMBindingControllerApiRole.js +101 -0
  190. package/dist/model/IAMGroupControllerApiCreateGroupRequest.js +136 -0
  191. package/dist/model/IAMGroupControllerApiGroupDetail.js +113 -0
  192. package/dist/model/IAMGroupControllerApiGroupMember.js +146 -0
  193. package/dist/model/IAMGroupControllerApiGroupMembership.js +118 -0
  194. package/dist/model/IAMGroupControllerApiUpdateGroupRequest.js +127 -0
  195. package/dist/model/IAMInvitationControllerApiInvitationCreateRequest.js +170 -0
  196. package/dist/model/IAMInvitationControllerApiInvitationDetail.js +229 -0
  197. package/dist/model/IAMInvitationControllerApiInvitationRole.js +124 -0
  198. package/dist/model/IAMRoleControllerApiRoleCreateOrUpdateRequest.js +148 -0
  199. package/dist/model/IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions.js +365 -0
  200. package/dist/model/IAMRoleControllerApiRoleDetail.js +143 -0
  201. package/dist/model/IAMServiceAccountControllerApiGroup.js +89 -0
  202. package/dist/model/IAMServiceAccountControllerApiServiceAccountRequest.js +163 -0
  203. package/dist/model/IAMServiceAccountControllerApiServiceAccountResponse.js +178 -0
  204. package/dist/model/IAMTenantAccessControllerApiAuthentication.js +101 -0
  205. package/dist/model/IAMTenantAccessControllerApiCreateTenantAccessRequest.js +112 -0
  206. package/dist/model/IAMTenantAccessControllerApiGroup.js +109 -0
  207. package/dist/model/IAMTenantAccessControllerApiRoleAssignment.js +167 -0
  208. package/dist/model/IAMTenantAccessControllerApiTenantAccess.js +196 -0
  209. package/dist/model/IAMTenantAccessControllerApiUserPermission.js +99 -0
  210. package/dist/model/IAMTenantAccessControllerApiUserTenantAccess.js +188 -0
  211. package/dist/model/IAMTenantAccessControllerUserApiAutocomplete.js +127 -0
  212. package/dist/model/IAMUserControllerApiCreateOrUpdateUserRequest.js +188 -0
  213. package/dist/model/IAMUserControllerApiGroup.js +101 -0
  214. package/dist/model/IAMUserControllerApiPatchRestrictedRequest.js +108 -0
  215. package/dist/model/IAMUserControllerApiPatchSuperAdminRequest.js +108 -0
  216. package/dist/model/IAMUserControllerApiPatchUserPasswordRequest.js +112 -0
  217. package/dist/model/IAMUserControllerApiTenant.js +101 -0
  218. package/dist/model/IAMUserControllerApiUser.js +258 -0
  219. package/dist/model/IAMUserControllerApiUserAuth.js +113 -0
  220. package/dist/model/IAMUserControllerApiUserSummary.js +184 -0
  221. package/dist/model/IAMUserGroupControllerApiUpdateUserGroupsRequest.js +89 -0
  222. package/dist/model/IdWithNamespace.js +101 -0
  223. package/dist/model/IdentityProvider.js +123 -0
  224. package/dist/model/InputObject.js +189 -0
  225. package/dist/model/InputType.js +101 -0
  226. package/dist/model/InstanceControllerApiActiveService.js +94 -0
  227. package/dist/model/InstanceControllerApiActiveServiceList.js +118 -0
  228. package/dist/model/InstanceControllerApiCreateOrUpdateWorkerGroupRequest.js +139 -0
  229. package/dist/model/InstanceControllerApiPluginArtifact.js +137 -0
  230. package/dist/model/InstanceControllerApiPluginArtifactListPluginArtifact.js +97 -0
  231. package/dist/model/InstanceControllerApiPluginArtifactListPluginResolutionResult.js +97 -0
  232. package/dist/model/InstanceControllerApiPluginListRequest.js +89 -0
  233. package/dist/model/InstanceControllerApiPluginVersionDetails.js +182 -0
  234. package/dist/model/InstanceControllerApiPluginVersionDetailsApiPluginClass.js +101 -0
  235. package/dist/model/InstanceControllerApiPluginVersionDetailsApiPluginClasses.js +122 -0
  236. package/dist/model/InstanceControllerApiPluginVersions.js +134 -0
  237. package/dist/model/InstanceControllerApiPluginVersionsApiPluginVersionAndMetadata.js +103 -0
  238. package/dist/model/InstanceControllerApiServerInstance.js +122 -0
  239. package/dist/model/InstanceControllerApiServiceInstance.js +137 -0
  240. package/dist/model/InstanceControllerApiWorkerGroup.js +129 -0
  241. package/dist/model/InstanceControllerApiWorkerGroupDetails.js +163 -0
  242. package/dist/model/InstanceControllerApiWorkerGroupItem.js +126 -0
  243. package/dist/model/InstanceControllerApiWorkerGroupList.js +112 -0
  244. package/dist/model/Invitation.js +258 -0
  245. package/dist/model/InvitationInvitationStatus.js +63 -0
  246. package/dist/model/Isolation.js +98 -0
  247. package/dist/model/KVControllerApiDeleteBulkRequest.js +89 -0
  248. package/dist/model/KVControllerApiDeleteBulkResponse.js +89 -0
  249. package/dist/model/KVControllerTypedValue.js +94 -0
  250. package/dist/model/KVEntry.js +125 -0
  251. package/dist/model/KVType.js +83 -0
  252. package/dist/model/Label.js +126 -0
  253. package/dist/model/Level.js +73 -0
  254. package/dist/model/Listener.js +172 -0
  255. package/dist/model/LogEntry.js +242 -0
  256. package/dist/model/MapObjectObject.js +85 -0
  257. package/dist/model/MeControllerApiMe.js +182 -0
  258. package/dist/model/MeControllerApiProfile.js +125 -0
  259. package/dist/model/MeControllerApiTenant.js +113 -0
  260. package/dist/model/MeControllerApiUpdatePasswordRequest.js +101 -0
  261. package/dist/model/MeControllerApiUserDetailsRequest.js +113 -0
  262. package/dist/model/Meta.js +129 -0
  263. package/dist/model/Metric.js +166 -0
  264. package/dist/model/MetricAggregation.js +130 -0
  265. package/dist/model/MetricAggregations.js +144 -0
  266. package/dist/model/MetricEntry.js +239 -0
  267. package/dist/model/MetricTag.js +101 -0
  268. package/dist/model/MiscControllerBasicAuthCredentials.js +113 -0
  269. package/dist/model/MiscControllerConfiguration.js +266 -0
  270. package/dist/model/MiscControllerEEConfiguration.js +494 -0
  271. package/dist/model/MiscControllerEnvironment.js +101 -0
  272. package/dist/model/MiscControllerLicenseInfo.js +129 -0
  273. package/dist/model/MiscControllerPluginIdAndVersion.js +101 -0
  274. package/dist/model/MiscControllerPreview.js +93 -0
  275. package/dist/model/MiscControllerTenantConfigurationInfo.js +93 -0
  276. package/dist/model/Name.js +102 -0
  277. package/dist/model/Namespace.js +350 -0
  278. package/dist/model/NamespaceAllowedNamespace.js +112 -0
  279. package/dist/model/NamespaceAllowedTrigger.js +124 -0
  280. package/dist/model/NamespaceLight.js +122 -0
  281. package/dist/model/NamespaceUsage.js +85 -0
  282. package/dist/model/NamespaceWithDisabled.js +370 -0
  283. package/dist/model/Output.js +157 -0
  284. package/dist/model/PageRequest.js +93 -0
  285. package/dist/model/PagedResultsApiGroupSummary.js +140 -0
  286. package/dist/model/PagedResultsApiRoleSummary.js +140 -0
  287. package/dist/model/PagedResultsAppsControllerApiApp.js +140 -0
  288. package/dist/model/PagedResultsAppsControllerApiAppCatalogItem.js +140 -0
  289. package/dist/model/PagedResultsAuditLogControllerAuditLogWithUser.js +140 -0
  290. package/dist/model/PagedResultsBlueprint.js +140 -0
  291. package/dist/model/PagedResultsBlueprintControllerApiBlueprintItem.js +140 -0
  292. package/dist/model/PagedResultsDashboard.js +140 -0
  293. package/dist/model/PagedResultsExecution.js +140 -0
  294. package/dist/model/PagedResultsFlow.js +140 -0
  295. package/dist/model/PagedResultsIAMBindingControllerApiBindingDetail.js +140 -0
  296. package/dist/model/PagedResultsIAMBindingControllerApiBindingSummary.js +140 -0
  297. package/dist/model/PagedResultsIAMGroupControllerApiGroupMember.js +140 -0
  298. package/dist/model/PagedResultsIAMInvitationControllerApiInvitationDetail.js +140 -0
  299. package/dist/model/PagedResultsIAMTenantAccessControllerApiUserTenantAccess.js +140 -0
  300. package/dist/model/PagedResultsIAMUserControllerApiUserSummary.js +140 -0
  301. package/dist/model/PagedResultsInstanceControllerApiPluginArtifact.js +140 -0
  302. package/dist/model/PagedResultsInstanceControllerApiServiceInstance.js +140 -0
  303. package/dist/model/PagedResultsLogEntry.js +140 -0
  304. package/dist/model/PagedResultsMapStringObject.js +124 -0
  305. package/dist/model/PagedResultsMetricEntry.js +140 -0
  306. package/dist/model/PagedResultsNamespaceWithDisabled.js +140 -0
  307. package/dist/model/PagedResultsSearchResultFlow.js +140 -0
  308. package/dist/model/PagedResultsTaskRun.js +140 -0
  309. package/dist/model/PagedResultsTenant.js +140 -0
  310. package/dist/model/PagedResultsTestSuite.js +140 -0
  311. package/dist/model/PagedResultsTrigger.js +140 -0
  312. package/dist/model/PagedResultsTriggerControllerTriggers.js +140 -0
  313. package/dist/model/PatchOperation.js +108 -0
  314. package/dist/model/PatchOperationPath.js +91 -0
  315. package/dist/model/PatchOperationType.js +63 -0
  316. package/dist/model/PatchRequest.js +132 -0
  317. package/dist/model/Permission.js +168 -0
  318. package/dist/model/Plugin.js +601 -0
  319. package/dist/model/PluginArtifact.js +149 -0
  320. package/dist/model/PluginArtifactMetadata.js +125 -0
  321. package/dist/model/PluginControllerApiPluginVersions.js +101 -0
  322. package/dist/model/PluginDefault.js +130 -0
  323. package/dist/model/PluginIcon.js +109 -0
  324. package/dist/model/PluginMetric.js +113 -0
  325. package/dist/model/PluginPluginElementMetadata.js +97 -0
  326. package/dist/model/PluginSchema.js +107 -0
  327. package/dist/model/PluginSubGroupPluginCategory.js +118 -0
  328. package/dist/model/PluginUsage.js +87 -0
  329. package/dist/model/PreviewAppRequest.js +91 -0
  330. package/dist/model/PropertyBoolean.js +97 -0
  331. package/dist/model/PropertyDouble.js +97 -0
  332. package/dist/model/PropertyDuration.js +101 -0
  333. package/dist/model/PropertyListString.js +101 -0
  334. package/dist/model/PropertyObject.js +97 -0
  335. package/dist/model/PropertyString.js +101 -0
  336. package/dist/model/QueryFilter.js +103 -0
  337. package/dist/model/QueryFilterField.js +123 -0
  338. package/dist/model/QueryFilterFieldOp.js +134 -0
  339. package/dist/model/QueryFilterOp.js +113 -0
  340. package/dist/model/QueryFilterOperation.js +101 -0
  341. package/dist/model/QueryFilterResourceField.js +122 -0
  342. package/dist/model/RBACServiceRoleAssignmentRoleOrigin.js +58 -0
  343. package/dist/model/Relation.js +98 -0
  344. package/dist/model/RelationType.js +83 -0
  345. package/dist/model/ResourceType.js +339 -0
  346. package/dist/model/ResourceTypeSchemaExtensionConfiguration.js +97 -0
  347. package/dist/model/Role.js +178 -0
  348. package/dist/model/RoleUsage.js +85 -0
  349. package/dist/model/SLA.js +148 -0
  350. package/dist/model/SLABehavior.js +63 -0
  351. package/dist/model/SLAType.js +58 -0
  352. package/dist/model/Schema.js +180 -0
  353. package/dist/model/SchemaAttribute.js +274 -0
  354. package/dist/model/SchemaAttributeMutability.js +68 -0
  355. package/dist/model/SchemaAttributeReturned.js +68 -0
  356. package/dist/model/SchemaAttributeType.js +88 -0
  357. package/dist/model/SchemaAttributeUniqueness.js +63 -0
  358. package/dist/model/SchemaType.js +88 -0
  359. package/dist/model/ScimExtension.js +89 -0
  360. package/dist/model/ScimResource.js +195 -0
  361. package/dist/model/ScimResourceWithOptionalId.js +228 -0
  362. package/dist/model/ScimUser.js +336 -0
  363. package/dist/model/SearchRequest.js +241 -0
  364. package/dist/model/SearchResultFlow.js +103 -0
  365. package/dist/model/SecurityIntegrationType.js +53 -0
  366. package/dist/model/ServerConfig.js +136 -0
  367. package/dist/model/ServerConfigLiveness.js +169 -0
  368. package/dist/model/ServerInstance.js +165 -0
  369. package/dist/model/ServerInstanceType.js +58 -0
  370. package/dist/model/ServerType.js +78 -0
  371. package/dist/model/ServiceInstance.js +232 -0
  372. package/dist/model/ServiceInstanceTimestampedEvent.js +118 -0
  373. package/dist/model/ServiceProviderConfiguration.js +384 -0
  374. package/dist/model/ServiceProviderConfigurationAuthenticationSchema.js +134 -0
  375. package/dist/model/ServiceProviderConfigurationAuthenticationSchemaType.js +73 -0
  376. package/dist/model/ServiceProviderConfigurationBulkConfiguration.js +111 -0
  377. package/dist/model/ServiceProviderConfigurationFilterConfiguration.js +103 -0
  378. package/dist/model/ServiceProviderConfigurationSupportedConfiguration.js +85 -0
  379. package/dist/model/ServiceServiceState.js +98 -0
  380. package/dist/model/ServiceType.js +73 -0
  381. package/dist/model/ServiceUsage.js +110 -0
  382. package/dist/model/ServiceUsageDailyServiceStatistics.js +122 -0
  383. package/dist/model/ServiceUsageDailyStatistics.js +109 -0
  384. package/dist/model/SetupConfiguration.js +145 -0
  385. package/dist/model/SetupConfigurationSetupData.js +115 -0
  386. package/dist/model/SortOrder.js +58 -0
  387. package/dist/model/SortRequest.js +100 -0
  388. package/dist/model/State.js +167 -0
  389. package/dist/model/StateHistory.js +119 -0
  390. package/dist/model/StateType.js +123 -0
  391. package/dist/model/Task.js +253 -0
  392. package/dist/model/TaskFixture.js +157 -0
  393. package/dist/model/TaskForExecution.js +211 -0
  394. package/dist/model/TaskRun.js +284 -0
  395. package/dist/model/TaskRunAttempt.js +168 -0
  396. package/dist/model/Tenant.js +245 -0
  397. package/dist/model/TenantInterface.js +89 -0
  398. package/dist/model/TenantUsage.js +85 -0
  399. package/dist/model/TestState.js +68 -0
  400. package/dist/model/TestSuite.js +212 -0
  401. package/dist/model/TestSuiteControllerSearchTestsLastResult.js +110 -0
  402. package/dist/model/TestSuiteControllerTestSuiteApiId.js +126 -0
  403. package/dist/model/TestSuiteControllerTestSuiteBulkRequest.js +130 -0
  404. package/dist/model/TestSuiteControllerTestsLastResultResponse.js +110 -0
  405. package/dist/model/TestSuiteRunResult.js +215 -0
  406. package/dist/model/TheLabelsToPassToTheExecutionCreated.js +158 -0
  407. package/dist/model/TimeWindow.js +101 -0
  408. package/dist/model/Trigger.js +287 -0
  409. package/dist/model/TriggerContext.js +205 -0
  410. package/dist/model/TriggerControllerSetDisabledRequest.js +140 -0
  411. package/dist/model/TriggerControllerTriggers.js +105 -0
  412. package/dist/model/TriggerFixture.js +136 -0
  413. package/dist/model/Type.js +143 -0
  414. package/dist/model/UnitTest.js +192 -0
  415. package/dist/model/UnitTestResult.js +239 -0
  416. package/dist/model/UpdateFlow200Response.js +261 -0
  417. package/dist/model/UpdateFlowsInNamespaceFromJson200Response.js +141 -0
  418. package/dist/model/Usage.js +343 -0
  419. package/dist/model/UsageEE.js +483 -0
  420. package/dist/model/UserGroup.js +122 -0
  421. package/dist/model/UserGroupType.js +58 -0
  422. package/dist/model/UserType.js +58 -0
  423. package/dist/model/UserUsage.js +138 -0
  424. package/dist/model/UsernamePasswordCredentials.js +150 -0
  425. package/dist/model/ValidateConstraintViolation.js +188 -0
  426. package/dist/model/ValuePathExpression.js +99 -0
  427. package/dist/model/WorkerGroup.js +98 -0
  428. package/dist/model/WorkerGroupFallback.js +63 -0
  429. package/dist/model/WorkerTaskRestartStrategy.js +63 -0
  430. package/package.json +46 -0
package/README.md ADDED
@@ -0,0 +1,879 @@
1
+ # @kestra-io/kestra-sdk
2
+
3
+ KestraIoKestraSdk - JavaScript client for @kestra-io/kestra-sdk
4
+ All API operations, except for Superadmin-only endpoints, require a tenant identifier in the HTTP path.<br/>
5
+ Endpoints designated as Superadmin-only are not tenant-scoped.
6
+ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
7
+
8
+ - API version: v1
9
+ - Package version: v0.24.0
10
+ - Generator version: 7.14.0-SNAPSHOT
11
+ - Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
12
+
13
+ ## Installation
14
+
15
+ ### For [Node.js](https://nodejs.org/)
16
+
17
+ #### npm
18
+
19
+ To publish the library as a [npm](https://www.npmjs.com/), please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).
20
+
21
+ Then install it via:
22
+
23
+ ```shell
24
+ npm install @kestra-io/kestra-sdk --save
25
+ ```
26
+
27
+ Finally, you need to build the module:
28
+
29
+ ```shell
30
+ npm run build
31
+ ```
32
+
33
+ ##### Local development
34
+
35
+ To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing `package.json` (and this README). Let's call this `JAVASCRIPT_CLIENT_DIR`. Then run:
36
+
37
+ ```shell
38
+ npm install
39
+ ```
40
+
41
+ Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:
42
+
43
+ ```shell
44
+ npm link
45
+ ```
46
+
47
+ To use the link you just defined in your project, switch to the directory you want to use your @kestra-io/kestra-sdk from, and run:
48
+
49
+ ```shell
50
+ npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
51
+ ```
52
+
53
+ Finally, you need to build the module:
54
+
55
+ ```shell
56
+ npm run build
57
+ ```
58
+
59
+ #### git
60
+
61
+ If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID
62
+ then install it via:
63
+
64
+ ```shell
65
+ npm install GIT_USER_ID/GIT_REPO_ID --save
66
+ ```
67
+
68
+ ### For browser
69
+
70
+ The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
71
+ the above steps with Node.js and installing browserify with `npm install -g browserify`,
72
+ perform the following (assuming *main.js* is your entry file):
73
+
74
+ ```shell
75
+ browserify main.js > bundle.js
76
+ ```
77
+
78
+ Then include *bundle.js* in the HTML pages.
79
+
80
+ ### Webpack Configuration
81
+
82
+ Using Webpack you may encounter the following error: "Module not found: Error:
83
+ Cannot resolve module", most certainly you should disable AMD loader. Add/merge
84
+ the following section to your webpack config:
85
+
86
+ ```javascript
87
+ module: {
88
+ rules: [
89
+ {
90
+ parser: {
91
+ amd: false
92
+ }
93
+ }
94
+ ]
95
+ }
96
+ ```
97
+
98
+ ## Getting Started
99
+
100
+ Please follow the [installation](#installation) instruction and execute the following JS code:
101
+
102
+ ```javascript
103
+ var KestraIoKestraSdk = require('@kestra-io/kestra-sdk');
104
+
105
+
106
+ var api = new KestraIoKestraSdk.AIApi()
107
+ var tenant = "tenant_example"; // {String}
108
+ var flowGenerationPrompt = new KestraIoKestraSdk.FlowGenerationPrompt(); // {FlowGenerationPrompt} Prompt and context required for flow generation
109
+ var callback = function(error, data, response) {
110
+ if (error) {
111
+ console.error(error);
112
+ } else {
113
+ console.log('API called successfully. Returned data: ' + data);
114
+ }
115
+ };
116
+ api.generateFlow(tenant, flowGenerationPrompt, callback);
117
+
118
+ ```
119
+
120
+ ## Documentation for API Endpoints
121
+
122
+ All URIs are relative to *http://localhost*
123
+
124
+ Class | Method | HTTP request | Description
125
+ ------------ | ------------- | ------------- | -------------
126
+ *KestraIoKestraSdk.AIApi* | [**generateFlow**](docs/AIApi.md#generateFlow) | **POST** /api/v1/{tenant}/ai/generate/flow | Generate or regenerate a flow based on a prompt
127
+ *KestraIoKestraSdk.AppsApi* | [**bulkDeleteApps**](docs/AppsApi.md#bulkDeleteApps) | **DELETE** /api/v1/{tenant}/apps | Delete existing apps
128
+ *KestraIoKestraSdk.AppsApi* | [**bulkDisableApps**](docs/AppsApi.md#bulkDisableApps) | **POST** /api/v1/{tenant}/apps/disable | Disable existing apps
129
+ *KestraIoKestraSdk.AppsApi* | [**bulkEnableApps**](docs/AppsApi.md#bulkEnableApps) | **POST** /api/v1/{tenant}/apps/enable | Enable existing apps
130
+ *KestraIoKestraSdk.AppsApi* | [**bulkExportApps**](docs/AppsApi.md#bulkExportApps) | **POST** /api/v1/{tenant}/apps/export | Export apps as a ZIP archive of YAML sources.
131
+ *KestraIoKestraSdk.AppsApi* | [**createApp**](docs/AppsApi.md#createApp) | **POST** /api/v1/{tenant}/apps | Create a new app
132
+ *KestraIoKestraSdk.AppsApi* | [**deleteApp**](docs/AppsApi.md#deleteApp) | **DELETE** /api/v1/{tenant}/apps/{uid} | Delete an existing app
133
+ *KestraIoKestraSdk.AppsApi* | [**disableApp**](docs/AppsApi.md#disableApp) | **POST** /api/v1/{tenant}/apps/{uid}/disable | Disable the app.
134
+ *KestraIoKestraSdk.AppsApi* | [**dispatchApp**](docs/AppsApi.md#dispatchApp) | **POST** /api/v1/{tenant}/apps/view/{id}/dispatch/{dispatch} | Dispatch for a given app.
135
+ *KestraIoKestraSdk.AppsApi* | [**downloadFileFromAppExecution**](docs/AppsApi.md#downloadFileFromAppExecution) | **GET** /api/v1/{tenant}/apps/view/{id}/file/download | Download file from an app execution
136
+ *KestraIoKestraSdk.AppsApi* | [**enableApp**](docs/AppsApi.md#enableApp) | **POST** /api/v1/{tenant}/apps/{uid}/enable | Enable the app.
137
+ *KestraIoKestraSdk.AppsApi* | [**getApp**](docs/AppsApi.md#getApp) | **GET** /api/v1/{tenant}/apps/{uid} | Retrieve an app
138
+ *KestraIoKestraSdk.AppsApi* | [**getFileMetaFromAppExecution**](docs/AppsApi.md#getFileMetaFromAppExecution) | **GET** /api/v1/{tenant}/apps/view/{id}/file/meta | Get file meta information from an app execution
139
+ *KestraIoKestraSdk.AppsApi* | [**getFilePreviewFromAppExecution**](docs/AppsApi.md#getFilePreviewFromAppExecution) | **GET** /api/v1/{tenant}/apps/view/{id}/file/preview | Get file preview from an app execution
140
+ *KestraIoKestraSdk.AppsApi* | [**getLogsFromAppExecution**](docs/AppsApi.md#getLogsFromAppExecution) | **GET** /api/v1/{tenant}/apps/view/{uid}/logs/download | Download logs for an app execution
141
+ *KestraIoKestraSdk.AppsApi* | [**getStreamEventsFromApp**](docs/AppsApi.md#getStreamEventsFromApp) | **GET** /api/v1/{tenant}/apps/view/{id}/streams/{stream} | Get an event stream from a given app.
142
+ *KestraIoKestraSdk.AppsApi* | [**listTags**](docs/AppsApi.md#listTags) | **GET** /api/v1/{tenant}/apps/tags | Get all the app tags
143
+ *KestraIoKestraSdk.AppsApi* | [**openApp**](docs/AppsApi.md#openApp) | **GET** /api/v1/{tenant}/apps/view/{uid} | Open an app
144
+ *KestraIoKestraSdk.AppsApi* | [**previewApp**](docs/AppsApi.md#previewApp) | **POST** /api/v1/{tenant}/apps/preview | Open the app for the given source
145
+ *KestraIoKestraSdk.AppsApi* | [**searchApps**](docs/AppsApi.md#searchApps) | **GET** /api/v1/{tenant}/apps/search | Search for apps
146
+ *KestraIoKestraSdk.AppsApi* | [**searchAppsFromCatalog**](docs/AppsApi.md#searchAppsFromCatalog) | **GET** /api/v1/{tenant}/apps/catalog | Search for apps from catalog
147
+ *KestraIoKestraSdk.AppsApi* | [**updateApp**](docs/AppsApi.md#updateApp) | **PUT** /api/v1/{tenant}/apps/{uid} | Update an existing app
148
+ *KestraIoKestraSdk.AuditLogsApi* | [**findAuditLog**](docs/AuditLogsApi.md#findAuditLog) | **POST** /api/v1/{tenant}/auditlogs/find | Find a specific audit log
149
+ *KestraIoKestraSdk.AuditLogsApi* | [**getResourceDiffFromAuditLog**](docs/AuditLogsApi.md#getResourceDiffFromAuditLog) | **GET** /api/v1/{tenant}/auditlogs/{id}/diff | Retrieve the diff between audit logs
150
+ *KestraIoKestraSdk.AuditLogsApi* | [**listAuditLogFromResourceId**](docs/AuditLogsApi.md#listAuditLogFromResourceId) | **GET** /api/v1/{tenant}/auditlogs/history/{detailId} | Find all audit logs about a specific resource.
151
+ *KestraIoKestraSdk.AuditLogsApi* | [**searchAuditLogs**](docs/AuditLogsApi.md#searchAuditLogs) | **GET** /api/v1/{tenant}/auditlogs/search | Search for audit logs
152
+ *KestraIoKestraSdk.AuthsApi* | [**createApiTokenForCurrentUser**](docs/AuthsApi.md#createApiTokenForCurrentUser) | **POST** /api/v1/me/api-tokens | Create API token for the authenticated user
153
+ *KestraIoKestraSdk.AuthsApi* | [**deleteApiTokenForCurrentUser**](docs/AuthsApi.md#deleteApiTokenForCurrentUser) | **DELETE** /api/v1/me/api-tokens/{tokenId} | Delete API token for the authenticated user
154
+ *KestraIoKestraSdk.AuthsApi* | [**getCurrentUser**](docs/AuthsApi.md#getCurrentUser) | **GET** /api/v1/me | Get details about the authenticated user
155
+ *KestraIoKestraSdk.AuthsApi* | [**index**](docs/AuthsApi.md#index) | **GET** /api/v1/auths | Retrieve list of authentication methods
156
+ *KestraIoKestraSdk.AuthsApi* | [**listApiTokensForCurrentUser**](docs/AuthsApi.md#listApiTokensForCurrentUser) | **GET** /api/v1/me/api-tokens | List API tokens for authenticated user
157
+ *KestraIoKestraSdk.AuthsApi* | [**patchCurrentUser**](docs/AuthsApi.md#patchCurrentUser) | **PATCH** /api/v1/me | Update authenticated user details
158
+ *KestraIoKestraSdk.BannersApi* | [**createBanner**](docs/BannersApi.md#createBanner) | **POST** /api/v1/banners | Create an announcement banner
159
+ *KestraIoKestraSdk.BannersApi* | [**deleteBanner**](docs/BannersApi.md#deleteBanner) | **DELETE** /api/v1/banners/{id} | Delete an announcement banner
160
+ *KestraIoKestraSdk.BannersApi* | [**searchBanners**](docs/BannersApi.md#searchBanners) | **GET** /api/v1/banners/search | Retrieve all announcement banners
161
+ *KestraIoKestraSdk.BannersApi* | [**updateBanner**](docs/BannersApi.md#updateBanner) | **PUT** /api/v1/banners/{id} | Update an announcement banner
162
+ *KestraIoKestraSdk.BindingsApi* | [**bulkCreateBinding**](docs/BindingsApi.md#bulkCreateBinding) | **POST** /api/v1/{tenant}/bindings/bulk | Create multiple bindings
163
+ *KestraIoKestraSdk.BindingsApi* | [**createBinding**](docs/BindingsApi.md#createBinding) | **POST** /api/v1/{tenant}/bindings | Create a binding
164
+ *KestraIoKestraSdk.BindingsApi* | [**deleteBinding**](docs/BindingsApi.md#deleteBinding) | **DELETE** /api/v1/{tenant}/bindings/{id} | Delete a binding
165
+ *KestraIoKestraSdk.BindingsApi* | [**getBinding**](docs/BindingsApi.md#getBinding) | **GET** /api/v1/{tenant}/bindings/{id} | Retrieve a binding
166
+ *KestraIoKestraSdk.BindingsApi* | [**searchBindings**](docs/BindingsApi.md#searchBindings) | **GET** /api/v1/{tenant}/bindings/search | Search for bindings
167
+ *KestraIoKestraSdk.BlueprintTagsApi* | [**internalBlueprintTags**](docs/BlueprintTagsApi.md#internalBlueprintTags) | **GET** /api/v1/{tenant}/blueprints/custom/tags | List all internal blueprint tags
168
+ *KestraIoKestraSdk.BlueprintTagsApi* | [**listBlueprintTags**](docs/BlueprintTagsApi.md#listBlueprintTags) | **GET** /api/v1/{tenant}/blueprints/community/{kind}/tags | List blueprint tags matching the filter
169
+ *KestraIoKestraSdk.BlueprintsApi* | [**createInternalBlueprints**](docs/BlueprintsApi.md#createInternalBlueprints) | **POST** /api/v1/{tenant}/blueprints/custom | Create a new internal blueprint
170
+ *KestraIoKestraSdk.BlueprintsApi* | [**deleteInternalBlueprints**](docs/BlueprintsApi.md#deleteInternalBlueprints) | **DELETE** /api/v1/{tenant}/blueprints/custom/{id} | Delete an internal blueprint
171
+ *KestraIoKestraSdk.BlueprintsApi* | [**getBlueprint**](docs/BlueprintsApi.md#getBlueprint) | **GET** /api/v1/{tenant}/blueprints/community/{kind}/{id} | Retrieve a blueprint
172
+ *KestraIoKestraSdk.BlueprintsApi* | [**getBlueprintGraph**](docs/BlueprintsApi.md#getBlueprintGraph) | **GET** /api/v1/{tenant}/blueprints/community/{kind}/{id}/graph | Retrieve a blueprint graph
173
+ *KestraIoKestraSdk.BlueprintsApi* | [**getBlueprintSource**](docs/BlueprintsApi.md#getBlueprintSource) | **GET** /api/v1/{tenant}/blueprints/community/{kind}/{id}/source | Retrieve a blueprint source code
174
+ *KestraIoKestraSdk.BlueprintsApi* | [**internalBlueprint**](docs/BlueprintsApi.md#internalBlueprint) | **GET** /api/v1/{tenant}/blueprints/custom/{id} | Retrieve an internal blueprint
175
+ *KestraIoKestraSdk.BlueprintsApi* | [**internalBlueprintFlow**](docs/BlueprintsApi.md#internalBlueprintFlow) | **GET** /api/v1/{tenant}/blueprints/custom/{id}/source | Retrieve an internal blueprint source code
176
+ *KestraIoKestraSdk.BlueprintsApi* | [**searchBlueprints**](docs/BlueprintsApi.md#searchBlueprints) | **GET** /api/v1/{tenant}/blueprints/community/{kind} | List all blueprints
177
+ *KestraIoKestraSdk.BlueprintsApi* | [**searchInternalBlueprints**](docs/BlueprintsApi.md#searchInternalBlueprints) | **GET** /api/v1/{tenant}/blueprints/custom | List all internal blueprints
178
+ *KestraIoKestraSdk.BlueprintsApi* | [**updateInternalBlueprints**](docs/BlueprintsApi.md#updateInternalBlueprints) | **PUT** /api/v1/{tenant}/blueprints/custom/{id} | Update an internal blueprint
179
+ *KestraIoKestraSdk.ClusterApi* | [**enterMaintenance**](docs/ClusterApi.md#enterMaintenance) | **POST** /api/v1/instance/maintenance/enter | Enter cluster maintenance mode
180
+ *KestraIoKestraSdk.ClusterApi* | [**exitMaintenance**](docs/ClusterApi.md#exitMaintenance) | **POST** /api/v1/instance/maintenance/exit | Exit cluster maintenance mode
181
+ *KestraIoKestraSdk.DashboardsApi* | [**createDashboard**](docs/DashboardsApi.md#createDashboard) | **POST** /api/v1/{tenant}/dashboards | Create a dashboard from yaml source
182
+ *KestraIoKestraSdk.DashboardsApi* | [**deleteDashboard**](docs/DashboardsApi.md#deleteDashboard) | **DELETE** /api/v1/{tenant}/dashboards/{id} | Delete a dashboard
183
+ *KestraIoKestraSdk.DashboardsApi* | [**exportChartToCsv**](docs/DashboardsApi.md#exportChartToCsv) | **POST** /api/v1/{tenant}/dashboards/charts/export/to-csv | Export a table chart data to CSV
184
+ *KestraIoKestraSdk.DashboardsApi* | [**exportDashboardChartDataToCSV**](docs/DashboardsApi.md#exportDashboardChartDataToCSV) | **POST** /api/v1/{tenant}/dashboards/{id}/charts/{chartId}/export/to-csv | Export a dashboard chart data to CSV
185
+ *KestraIoKestraSdk.DashboardsApi* | [**getDashboard**](docs/DashboardsApi.md#getDashboard) | **GET** /api/v1/{tenant}/dashboards/{id} | Get a dashboard
186
+ *KestraIoKestraSdk.DashboardsApi* | [**getDashboardChartData**](docs/DashboardsApi.md#getDashboardChartData) | **POST** /api/v1/{tenant}/dashboards/{id}/charts/{chartId} | Generate a dashboard chart data
187
+ *KestraIoKestraSdk.DashboardsApi* | [**previewChart**](docs/DashboardsApi.md#previewChart) | **POST** /api/v1/{tenant}/dashboards/charts/preview | Preview a chart data
188
+ *KestraIoKestraSdk.DashboardsApi* | [**searchDashboards**](docs/DashboardsApi.md#searchDashboards) | **GET** /api/v1/{tenant}/dashboards | Search for dashboards
189
+ *KestraIoKestraSdk.DashboardsApi* | [**updateDashboard**](docs/DashboardsApi.md#updateDashboard) | **PUT** /api/v1/{tenant}/dashboards/{id} | Update a dashboard
190
+ *KestraIoKestraSdk.DashboardsApi* | [**validateChart**](docs/DashboardsApi.md#validateChart) | **POST** /api/v1/{tenant}/dashboards/validate/chart | Validate a chart from yaml source
191
+ *KestraIoKestraSdk.DashboardsApi* | [**validateDashboard**](docs/DashboardsApi.md#validateDashboard) | **POST** /api/v1/{tenant}/dashboards/validate | Validate dashboard from yaml source
192
+ *KestraIoKestraSdk.DefaultApi* | [**acceptInvitation**](docs/DefaultApi.md#acceptInvitation) | **POST** /api/v1/invitation/accept/{invitationId} |
193
+ *KestraIoKestraSdk.DefaultApi* | [**createFromInvitation**](docs/DefaultApi.md#createFromInvitation) | **POST** /api/v1/invitation/create/{invitationId} |
194
+ *KestraIoKestraSdk.DefaultApi* | [**forgottenPassword**](docs/DefaultApi.md#forgottenPassword) | **GET** /api/v1/forgotten-password | Sends an email to reset a password.
195
+ *KestraIoKestraSdk.DefaultApi* | [**generate**](docs/DefaultApi.md#generate) | **GET** /api/v1/{tenant}/stats/generate-reports |
196
+ *KestraIoKestraSdk.DefaultApi* | [**login**](docs/DefaultApi.md#login) | **POST** /login |
197
+ *KestraIoKestraSdk.DefaultApi* | [**resetPassword**](docs/DefaultApi.md#resetPassword) | **POST** /api/v1/reset-password | Change a password for given token.
198
+ *KestraIoKestraSdk.ExecutionsApi* | [**createExecution**](docs/ExecutionsApi.md#createExecution) | **POST** /api/v1/{tenant}/executions/{namespace}/{id} | Create a new execution for a flow
199
+ *KestraIoKestraSdk.ExecutionsApi* | [**deleteExecution**](docs/ExecutionsApi.md#deleteExecution) | **DELETE** /api/v1/{tenant}/executions/{executionId} | Delete an execution
200
+ *KestraIoKestraSdk.ExecutionsApi* | [**deleteExecutionsByIds**](docs/ExecutionsApi.md#deleteExecutionsByIds) | **DELETE** /api/v1/{tenant}/executions/by-ids | Delete a list of executions
201
+ *KestraIoKestraSdk.ExecutionsApi* | [**deleteExecutionsByQuery**](docs/ExecutionsApi.md#deleteExecutionsByQuery) | **DELETE** /api/v1/{tenant}/executions/by-query | Delete executions filter by query parameters
202
+ *KestraIoKestraSdk.ExecutionsApi* | [**downloadFileFromExecution**](docs/ExecutionsApi.md#downloadFileFromExecution) | **GET** /api/v1/{tenant}/executions/{executionId}/file | Download file for an execution
203
+ *KestraIoKestraSdk.ExecutionsApi* | [**evalTaskRunExpression**](docs/ExecutionsApi.md#evalTaskRunExpression) | **POST** /api/v1/{tenant}/executions/{executionId}/eval/{taskRunId} | Evaluate a variable expression for this taskrun
204
+ *KestraIoKestraSdk.ExecutionsApi* | [**followDependenciesExecutions**](docs/ExecutionsApi.md#followDependenciesExecutions) | **GET** /api/v1/{tenant}/executions/{executionId}/follow-dependencies | Follow all execution dependencies executions
205
+ *KestraIoKestraSdk.ExecutionsApi* | [**followExecution**](docs/ExecutionsApi.md#followExecution) | **GET** /api/v1/{tenant}/executions/{executionId}/follow | Follow an execution
206
+ *KestraIoKestraSdk.ExecutionsApi* | [**forceRunByIds**](docs/ExecutionsApi.md#forceRunByIds) | **POST** /api/v1/{tenant}/executions/force-run/by-ids | Force run a list of executions
207
+ *KestraIoKestraSdk.ExecutionsApi* | [**forceRunExecution**](docs/ExecutionsApi.md#forceRunExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/force-run | Force run an execution
208
+ *KestraIoKestraSdk.ExecutionsApi* | [**forceRunExecutionsByQuery**](docs/ExecutionsApi.md#forceRunExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/force-run/by-query | Force run executions filter by query parameters
209
+ *KestraIoKestraSdk.ExecutionsApi* | [**getExecution**](docs/ExecutionsApi.md#getExecution) | **GET** /api/v1/{tenant}/executions/{executionId} | Get an execution
210
+ *KestraIoKestraSdk.ExecutionsApi* | [**getExecutionFlowGraph**](docs/ExecutionsApi.md#getExecutionFlowGraph) | **GET** /api/v1/{tenant}/executions/{executionId}/graph | Generate a graph for an execution
211
+ *KestraIoKestraSdk.ExecutionsApi* | [**getFileMetadatasFromExecution**](docs/ExecutionsApi.md#getFileMetadatasFromExecution) | **GET** /api/v1/{tenant}/executions/{executionId}/file/metas | Get file meta information for an execution
212
+ *KestraIoKestraSdk.ExecutionsApi* | [**getFlowFromExecution**](docs/ExecutionsApi.md#getFlowFromExecution) | **GET** /api/v1/{tenant}/executions/flows/{namespace}/{flowId} | Get flow information&#39;s for an execution
213
+ *KestraIoKestraSdk.ExecutionsApi* | [**getFlowFromExecutionById**](docs/ExecutionsApi.md#getFlowFromExecutionById) | **GET** /api/v1/{tenant}/executions/{executionId}/flow | Get flow information&#39;s for an execution
214
+ *KestraIoKestraSdk.ExecutionsApi* | [**getLatestExecutions**](docs/ExecutionsApi.md#getLatestExecutions) | **POST** /api/v1/{tenant}/executions/latest | Get the latest execution for given flows
215
+ *KestraIoKestraSdk.ExecutionsApi* | [**killExecution**](docs/ExecutionsApi.md#killExecution) | **DELETE** /api/v1/{tenant}/executions/{executionId}/kill | Kill an execution
216
+ *KestraIoKestraSdk.ExecutionsApi* | [**killExecutionsByIds**](docs/ExecutionsApi.md#killExecutionsByIds) | **DELETE** /api/v1/{tenant}/executions/kill/by-ids | Kill a list of executions
217
+ *KestraIoKestraSdk.ExecutionsApi* | [**killExecutionsByQuery**](docs/ExecutionsApi.md#killExecutionsByQuery) | **DELETE** /api/v1/{tenant}/executions/kill/by-query | Kill executions filter by query parameters
218
+ *KestraIoKestraSdk.ExecutionsApi* | [**listExecutableDistinctNamespaces**](docs/ExecutionsApi.md#listExecutableDistinctNamespaces) | **GET** /api/v1/{tenant}/executions/namespaces | Get all namespaces that have executable flows
219
+ *KestraIoKestraSdk.ExecutionsApi* | [**listFlowExecutionsByNamespace**](docs/ExecutionsApi.md#listFlowExecutionsByNamespace) | **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.
220
+ *KestraIoKestraSdk.ExecutionsApi* | [**pauseExecution**](docs/ExecutionsApi.md#pauseExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/pause | Pause a running execution.
221
+ *KestraIoKestraSdk.ExecutionsApi* | [**pauseExecutionsByIds**](docs/ExecutionsApi.md#pauseExecutionsByIds) | **POST** /api/v1/{tenant}/executions/pause/by-ids | Pause a list of running executions
222
+ *KestraIoKestraSdk.ExecutionsApi* | [**pauseExecutionsByQuery**](docs/ExecutionsApi.md#pauseExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/pause/by-query | Pause executions filter by query parameters
223
+ *KestraIoKestraSdk.ExecutionsApi* | [**previewFileFromExecution**](docs/ExecutionsApi.md#previewFileFromExecution) | **GET** /api/v1/{tenant}/executions/{executionId}/file/preview | Get file preview for an execution
224
+ *KestraIoKestraSdk.ExecutionsApi* | [**replayExecution**](docs/ExecutionsApi.md#replayExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/replay | Create a new execution from an old one and start it from a specified task run id
225
+ *KestraIoKestraSdk.ExecutionsApi* | [**replayExecutionsByIds**](docs/ExecutionsApi.md#replayExecutionsByIds) | **POST** /api/v1/{tenant}/executions/replay/by-ids | Create new executions from old ones. Keep the flow revision
226
+ *KestraIoKestraSdk.ExecutionsApi* | [**replayExecutionsByQuery**](docs/ExecutionsApi.md#replayExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/replay/by-query | Create new executions from old ones filter by query parameters. Keep the flow revision
227
+ *KestraIoKestraSdk.ExecutionsApi* | [**restartExecution**](docs/ExecutionsApi.md#restartExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/restart | Restart a new execution from an old one
228
+ *KestraIoKestraSdk.ExecutionsApi* | [**restartExecutionsByIds**](docs/ExecutionsApi.md#restartExecutionsByIds) | **POST** /api/v1/{tenant}/executions/restart/by-ids | Restart a list of executions
229
+ *KestraIoKestraSdk.ExecutionsApi* | [**restartExecutionsByQuery**](docs/ExecutionsApi.md#restartExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/restart/by-query | Restart executions filter by query parameters
230
+ *KestraIoKestraSdk.ExecutionsApi* | [**resumeExecution**](docs/ExecutionsApi.md#resumeExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/resume | Resume a paused execution.
231
+ *KestraIoKestraSdk.ExecutionsApi* | [**resumeExecutionFromBreakpoint**](docs/ExecutionsApi.md#resumeExecutionFromBreakpoint) | **POST** /api/v1/{tenant}/executions/{executionId}/resume-from-breakpoint | Resume an execution from a breakpoint (in the &#39;BREAKPOINT&#39; state).
232
+ *KestraIoKestraSdk.ExecutionsApi* | [**resumeExecutionsByIds**](docs/ExecutionsApi.md#resumeExecutionsByIds) | **POST** /api/v1/{tenant}/executions/resume/by-ids | Resume a list of paused executions
233
+ *KestraIoKestraSdk.ExecutionsApi* | [**resumeExecutionsByQuery**](docs/ExecutionsApi.md#resumeExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/resume/by-query | Resume executions filter by query parameters
234
+ *KestraIoKestraSdk.ExecutionsApi* | [**searchExecutions**](docs/ExecutionsApi.md#searchExecutions) | **GET** /api/v1/{tenant}/executions/search | Search for executions
235
+ *KestraIoKestraSdk.ExecutionsApi* | [**searchExecutionsByFlowId**](docs/ExecutionsApi.md#searchExecutionsByFlowId) | **GET** /api/v1/{tenant}/executions | Search for executions for a flow
236
+ *KestraIoKestraSdk.ExecutionsApi* | [**searchTaskRun**](docs/ExecutionsApi.md#searchTaskRun) | **GET** /api/v1/{tenant}/taskruns/search | Search for taskruns, only available with the Elasticsearch repository
237
+ *KestraIoKestraSdk.ExecutionsApi* | [**setLabelsOnTerminatedExecution**](docs/ExecutionsApi.md#setLabelsOnTerminatedExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/labels | Add or update labels of a terminated execution
238
+ *KestraIoKestraSdk.ExecutionsApi* | [**setLabelsOnTerminatedExecutionsByIds**](docs/ExecutionsApi.md#setLabelsOnTerminatedExecutionsByIds) | **POST** /api/v1/{tenant}/executions/labels/by-ids | Set labels on a list of executions
239
+ *KestraIoKestraSdk.ExecutionsApi* | [**setLabelsOnTerminatedExecutionsByQuery**](docs/ExecutionsApi.md#setLabelsOnTerminatedExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/labels/by-query | Set label on executions filter by query parameters
240
+ *KestraIoKestraSdk.ExecutionsApi* | [**triggerExecution**](docs/ExecutionsApi.md#triggerExecution) | **POST** /api/v1/{tenant}/executions/trigger/{namespace}/{id} | Trigger a new execution for a flow
241
+ *KestraIoKestraSdk.ExecutionsApi* | [**triggerExecutionByGetWebhook**](docs/ExecutionsApi.md#triggerExecutionByGetWebhook) | **GET** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key} | Trigger a new execution by GET webhook trigger
242
+ *KestraIoKestraSdk.ExecutionsApi* | [**triggerExecutionByPostWebhook**](docs/ExecutionsApi.md#triggerExecutionByPostWebhook) | **POST** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key} | Trigger a new execution by POST webhook trigger
243
+ *KestraIoKestraSdk.ExecutionsApi* | [**triggerExecutionByPutWebhook**](docs/ExecutionsApi.md#triggerExecutionByPutWebhook) | **PUT** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key} | Trigger a new execution by PUT webhook trigger
244
+ *KestraIoKestraSdk.ExecutionsApi* | [**unqueueExecution**](docs/ExecutionsApi.md#unqueueExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/unqueue | Unqueue an execution
245
+ *KestraIoKestraSdk.ExecutionsApi* | [**unqueueExecutionsByIds**](docs/ExecutionsApi.md#unqueueExecutionsByIds) | **POST** /api/v1/{tenant}/executions/unqueue/by-ids | Unqueue a list of executions
246
+ *KestraIoKestraSdk.ExecutionsApi* | [**unqueueExecutionsByQuery**](docs/ExecutionsApi.md#unqueueExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/unqueue/by-query | Unqueue executions filter by query parameters
247
+ *KestraIoKestraSdk.ExecutionsApi* | [**updateExecutionStatus**](docs/ExecutionsApi.md#updateExecutionStatus) | **POST** /api/v1/{tenant}/executions/{executionId}/change-status | Change the state of an execution
248
+ *KestraIoKestraSdk.ExecutionsApi* | [**updateExecutionsStatusByIds**](docs/ExecutionsApi.md#updateExecutionsStatusByIds) | **POST** /api/v1/{tenant}/executions/change-status/by-ids | Change executions state by id
249
+ *KestraIoKestraSdk.ExecutionsApi* | [**updateExecutionsStatusByQuery**](docs/ExecutionsApi.md#updateExecutionsStatusByQuery) | **POST** /api/v1/{tenant}/executions/change-status/by-query | Change executions state by query parameters
250
+ *KestraIoKestraSdk.ExecutionsApi* | [**updateTaskRunState**](docs/ExecutionsApi.md#updateTaskRunState) | **POST** /api/v1/{tenant}/executions/{executionId}/state | Change state for a taskrun in an execution
251
+ *KestraIoKestraSdk.ExecutionsApi* | [**validateNewExecutionInputs**](docs/ExecutionsApi.md#validateNewExecutionInputs) | **POST** /api/v1/{tenant}/executions/{namespace}/{id}/validate | Validate the creation of a new execution for a flow
252
+ *KestraIoKestraSdk.ExecutionsApi* | [**validateResumeExecutionInputs**](docs/ExecutionsApi.md#validateResumeExecutionInputs) | **POST** /api/v1/{tenant}/executions/{executionId}/resume/validate | Validate inputs to resume a paused execution.
253
+ *KestraIoKestraSdk.FilesApi* | [**createNamespaceDirectory**](docs/FilesApi.md#createNamespaceDirectory) | **POST** /api/v1/{tenant}/namespaces/{namespace}/files/directory | Create a directory
254
+ *KestraIoKestraSdk.FilesApi* | [**createNamespaceFile**](docs/FilesApi.md#createNamespaceFile) | **POST** /api/v1/{tenant}/namespaces/{namespace}/files | Create a file
255
+ *KestraIoKestraSdk.FilesApi* | [**deleteFileDirectory**](docs/FilesApi.md#deleteFileDirectory) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/files | Delete a file or directory
256
+ *KestraIoKestraSdk.FilesApi* | [**exportNamespaceFiles**](docs/FilesApi.md#exportNamespaceFiles) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files/export | Export namespace files as a ZIP
257
+ *KestraIoKestraSdk.FilesApi* | [**getFileContent**](docs/FilesApi.md#getFileContent) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files | Get namespace file content
258
+ *KestraIoKestraSdk.FilesApi* | [**getFileMetadatas**](docs/FilesApi.md#getFileMetadatas) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files/stats | Get namespace file stats such as size, creation &amp; modification dates and type
259
+ *KestraIoKestraSdk.FilesApi* | [**listNamespaceDirectoryFiles**](docs/FilesApi.md#listNamespaceDirectoryFiles) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files/directory | List directory content
260
+ *KestraIoKestraSdk.FilesApi* | [**moveFileDirectory**](docs/FilesApi.md#moveFileDirectory) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/files | Move a file or directory
261
+ *KestraIoKestraSdk.FilesApi* | [**searchNamespaceFiles**](docs/FilesApi.md#searchNamespaceFiles) | **GET** /api/v1/{tenant}/namespaces/{namespace}/files/search | Find files which path contain the given string in their URI
262
+ *KestraIoKestraSdk.FlowsApi* | [**bulkImportApps**](docs/FlowsApi.md#bulkImportApps) | **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&#39;t be imported is returned.
263
+ *KestraIoKestraSdk.FlowsApi* | [**bulkUpdateFlows**](docs/FlowsApi.md#bulkUpdateFlows) | **POST** /api/v1/{tenant}/flows/bulk | Update from multiples yaml sources
264
+ *KestraIoKestraSdk.FlowsApi* | [**createFlow**](docs/FlowsApi.md#createFlow) | **POST** /api/v1/{tenant}/flows | Create a flow from yaml source
265
+ *KestraIoKestraSdk.FlowsApi* | [**deleteFlow**](docs/FlowsApi.md#deleteFlow) | **DELETE** /api/v1/{tenant}/flows/{namespace}/{id} | Delete a flow
266
+ *KestraIoKestraSdk.FlowsApi* | [**deleteFlowsByIds**](docs/FlowsApi.md#deleteFlowsByIds) | **DELETE** /api/v1/{tenant}/flows/delete/by-ids | Delete flows by their IDs.
267
+ *KestraIoKestraSdk.FlowsApi* | [**deleteFlowsByQuery**](docs/FlowsApi.md#deleteFlowsByQuery) | **DELETE** /api/v1/{tenant}/flows/delete/by-query | Delete flows returned by the query parameters.
268
+ *KestraIoKestraSdk.FlowsApi* | [**disableFlowsByIds**](docs/FlowsApi.md#disableFlowsByIds) | **POST** /api/v1/{tenant}/flows/disable/by-ids | Disable flows by their IDs.
269
+ *KestraIoKestraSdk.FlowsApi* | [**disableFlowsByQuery**](docs/FlowsApi.md#disableFlowsByQuery) | **POST** /api/v1/{tenant}/flows/disable/by-query | Disable flows returned by the query parameters.
270
+ *KestraIoKestraSdk.FlowsApi* | [**enableFlowsByIds**](docs/FlowsApi.md#enableFlowsByIds) | **POST** /api/v1/{tenant}/flows/enable/by-ids | Enable flows by their IDs.
271
+ *KestraIoKestraSdk.FlowsApi* | [**enableFlowsByQuery**](docs/FlowsApi.md#enableFlowsByQuery) | **POST** /api/v1/{tenant}/flows/enable/by-query | Enable flows returned by the query parameters.
272
+ *KestraIoKestraSdk.FlowsApi* | [**exportFlowsByIds**](docs/FlowsApi.md#exportFlowsByIds) | **POST** /api/v1/{tenant}/flows/export/by-ids | Export flows as a ZIP archive of yaml sources.
273
+ *KestraIoKestraSdk.FlowsApi* | [**exportFlowsByQuery**](docs/FlowsApi.md#exportFlowsByQuery) | **GET** /api/v1/{tenant}/flows/export/by-query | Export flows as a ZIP archive of yaml sources.
274
+ *KestraIoKestraSdk.FlowsApi* | [**generateFlowGraph**](docs/FlowsApi.md#generateFlowGraph) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/graph | Generate a graph for a flow
275
+ *KestraIoKestraSdk.FlowsApi* | [**generateFlowGraphFromSource**](docs/FlowsApi.md#generateFlowGraphFromSource) | **POST** /api/v1/{tenant}/flows/graph | Generate a graph for a flow source
276
+ *KestraIoKestraSdk.FlowsApi* | [**getFlow**](docs/FlowsApi.md#getFlow) | **GET** /api/v1/{tenant}/flows/{namespace}/{id} | Get a flow
277
+ *KestraIoKestraSdk.FlowsApi* | [**getFlowDependencies**](docs/FlowsApi.md#getFlowDependencies) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/dependencies | Get flow dependencies
278
+ *KestraIoKestraSdk.FlowsApi* | [**getFlowDependenciesFromNamespace**](docs/FlowsApi.md#getFlowDependenciesFromNamespace) | **GET** /api/v1/{tenant}/namespaces/{namespace}/dependencies | Retrieve flow dependencies
279
+ *KestraIoKestraSdk.FlowsApi* | [**getTaskFromFlow**](docs/FlowsApi.md#getTaskFromFlow) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/tasks/{taskId} | Get a flow task
280
+ *KestraIoKestraSdk.FlowsApi* | [**importFlows**](docs/FlowsApi.md#importFlows) | **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&#39;t be imported is returned.
281
+ *KestraIoKestraSdk.FlowsApi* | [**listDistinctNamespaces**](docs/FlowsApi.md#listDistinctNamespaces) | **GET** /api/v1/{tenant}/flows/distinct-namespaces | List all distinct namespaces
282
+ *KestraIoKestraSdk.FlowsApi* | [**listFlowRevisions**](docs/FlowsApi.md#listFlowRevisions) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/revisions | Get revisions for a flow
283
+ *KestraIoKestraSdk.FlowsApi* | [**listFlowsByNamespace**](docs/FlowsApi.md#listFlowsByNamespace) | **GET** /api/v1/{tenant}/flows/{namespace} | Retrieve all flows from a given namespace
284
+ *KestraIoKestraSdk.FlowsApi* | [**searchFlows**](docs/FlowsApi.md#searchFlows) | **GET** /api/v1/{tenant}/flows/search | Search for flows
285
+ *KestraIoKestraSdk.FlowsApi* | [**searchFlowsBySourceCode**](docs/FlowsApi.md#searchFlowsBySourceCode) | **GET** /api/v1/{tenant}/flows/source | Search for flows source code
286
+ *KestraIoKestraSdk.FlowsApi* | [**updateFlow**](docs/FlowsApi.md#updateFlow) | **PUT** /api/v1/{tenant}/flows/{namespace}/{id} | Update a flow
287
+ *KestraIoKestraSdk.FlowsApi* | [**updateFlowsInNamespaceFromJson**](docs/FlowsApi.md#updateFlowsInNamespaceFromJson) | **POST** /api/v1/{tenant}/flows/{namespace} | Update a complete namespace from json object
288
+ *KestraIoKestraSdk.FlowsApi* | [**updateTask**](docs/FlowsApi.md#updateTask) | **PATCH** /api/v1/{tenant}/flows/{namespace}/{id}/{taskId} | Update a single task on a flow
289
+ *KestraIoKestraSdk.FlowsApi* | [**validateFlows**](docs/FlowsApi.md#validateFlows) | **POST** /api/v1/{tenant}/flows/validate | Validate a list of flows
290
+ *KestraIoKestraSdk.FlowsApi* | [**validateTask**](docs/FlowsApi.md#validateTask) | **POST** /api/v1/{tenant}/flows/validate/task | Validate a task
291
+ *KestraIoKestraSdk.FlowsApi* | [**validateTrigger**](docs/FlowsApi.md#validateTrigger) | **POST** /api/v1/{tenant}/flows/validate/trigger | Validate trigger
292
+ *KestraIoKestraSdk.GroupsApi* | [**addUserToGroup**](docs/GroupsApi.md#addUserToGroup) | **PUT** /api/v1/{tenant}/groups/{id}/members/{userId} | Add a user to a group
293
+ *KestraIoKestraSdk.GroupsApi* | [**autocompleteGroups**](docs/GroupsApi.md#autocompleteGroups) | **POST** /api/v1/{tenant}/groups/autocomplete | List groups for autocomplete
294
+ *KestraIoKestraSdk.GroupsApi* | [**createGroup**](docs/GroupsApi.md#createGroup) | **POST** /api/v1/{tenant}/groups | Create a group
295
+ *KestraIoKestraSdk.GroupsApi* | [**deleteGroup**](docs/GroupsApi.md#deleteGroup) | **DELETE** /api/v1/{tenant}/groups/{id} | Delete a group
296
+ *KestraIoKestraSdk.GroupsApi* | [**deleteUserFromGroup**](docs/GroupsApi.md#deleteUserFromGroup) | **DELETE** /api/v1/{tenant}/groups/{id}/members/{userId} | Remove a user from a group
297
+ *KestraIoKestraSdk.GroupsApi* | [**getGroup**](docs/GroupsApi.md#getGroup) | **GET** /api/v1/{tenant}/groups/{id} | Retrieve a group
298
+ *KestraIoKestraSdk.GroupsApi* | [**listGroupIds**](docs/GroupsApi.md#listGroupIds) | **POST** /api/v1/{tenant}/groups/ids | List groups by ids
299
+ *KestraIoKestraSdk.GroupsApi* | [**searchGroupMembers**](docs/GroupsApi.md#searchGroupMembers) | **GET** /api/v1/{tenant}/groups/{id}/members | Search for users in a group
300
+ *KestraIoKestraSdk.GroupsApi* | [**searchGroups**](docs/GroupsApi.md#searchGroups) | **GET** /api/v1/{tenant}/groups/search | Search for groups
301
+ *KestraIoKestraSdk.GroupsApi* | [**setUserMembershipForGroup**](docs/GroupsApi.md#setUserMembershipForGroup) | **PUT** /api/v1/{tenant}/groups/{id}/members/membership/{userId} | Update a user&#39;s membership type in a group
302
+ *KestraIoKestraSdk.GroupsApi* | [**updateGroup**](docs/GroupsApi.md#updateGroup) | **PUT** /api/v1/{tenant}/groups/{id} | Update a group
303
+ *KestraIoKestraSdk.InvitationsApi* | [**createInvitation**](docs/InvitationsApi.md#createInvitation) | **POST** /api/v1/{tenant}/invitations | Create an invitation
304
+ *KestraIoKestraSdk.InvitationsApi* | [**deleteInvitation**](docs/InvitationsApi.md#deleteInvitation) | **DELETE** /api/v1/{tenant}/invitations/{id} | Delete an invitation
305
+ *KestraIoKestraSdk.InvitationsApi* | [**findAllInvitationsForCurrentUser**](docs/InvitationsApi.md#findAllInvitationsForCurrentUser) | **GET** /api/v1/me/invitations | List invitations for the authenticated user
306
+ *KestraIoKestraSdk.InvitationsApi* | [**getInvitation**](docs/InvitationsApi.md#getInvitation) | **GET** /api/v1/{tenant}/invitations/{id} | Retrieve an invitation
307
+ *KestraIoKestraSdk.InvitationsApi* | [**listInvitationsByEmail**](docs/InvitationsApi.md#listInvitationsByEmail) | **GET** /api/v1/{tenant}/invitations/email/{email} | Retrieve all invitations for a given email
308
+ *KestraIoKestraSdk.InvitationsApi* | [**searchInvitations**](docs/InvitationsApi.md#searchInvitations) | **GET** /api/v1/{tenant}/invitations/search | Search for invitations
309
+ *KestraIoKestraSdk.KVApi* | [**deleteKeyValue**](docs/KVApi.md#deleteKeyValue) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Delete a key-value pair
310
+ *KestraIoKestraSdk.KVApi* | [**deleteKeyValues**](docs/KVApi.md#deleteKeyValues) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/kv | Bulk-delete multiple key/value pairs from the given namespace.
311
+ *KestraIoKestraSdk.KVApi* | [**getKeyValue**](docs/KVApi.md#getKeyValue) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Get value for a key
312
+ *KestraIoKestraSdk.KVApi* | [**listKeys**](docs/KVApi.md#listKeys) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv | List all keys for a namespace
313
+ *KestraIoKestraSdk.KVApi* | [**setKeyValue**](docs/KVApi.md#setKeyValue) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Puts a key-value pair in store
314
+ *KestraIoKestraSdk.LogsApi* | [**deleteLogsFromExecution**](docs/LogsApi.md#deleteLogsFromExecution) | **DELETE** /api/v1/{tenant}/logs/{executionId} | Delete logs for a specific execution, taskrun or task
315
+ *KestraIoKestraSdk.LogsApi* | [**deleteLogsFromFlow**](docs/LogsApi.md#deleteLogsFromFlow) | **DELETE** /api/v1/{tenant}/logs/{namespace}/{flowId} | Delete logs for a specific execution, taskrun or task
316
+ *KestraIoKestraSdk.LogsApi* | [**downloadLogsFromExecution**](docs/LogsApi.md#downloadLogsFromExecution) | **GET** /api/v1/{tenant}/logs/{executionId}/download | Download logs for a specific execution, taskrun or task
317
+ *KestraIoKestraSdk.LogsApi* | [**followLogsFromExecution**](docs/LogsApi.md#followLogsFromExecution) | **GET** /api/v1/{tenant}/logs/{executionId}/follow | Follow logs for a specific execution
318
+ *KestraIoKestraSdk.LogsApi* | [**listLogsFromExecution**](docs/LogsApi.md#listLogsFromExecution) | **GET** /api/v1/{tenant}/logs/{executionId} | Get logs for a specific execution, taskrun or task
319
+ *KestraIoKestraSdk.LogsApi* | [**searchLogs**](docs/LogsApi.md#searchLogs) | **GET** /api/v1/{tenant}/logs/search | Search for logs
320
+ *KestraIoKestraSdk.MaintenanceApi* | [**enterMaintenance**](docs/MaintenanceApi.md#enterMaintenance) | **POST** /api/v1/instance/maintenance/enter | Enter cluster maintenance mode
321
+ *KestraIoKestraSdk.MaintenanceApi* | [**exitMaintenance**](docs/MaintenanceApi.md#exitMaintenance) | **POST** /api/v1/instance/maintenance/exit | Exit cluster maintenance mode
322
+ *KestraIoKestraSdk.MetricsApi* | [**aggregateMetricsFromFlow**](docs/MetricsApi.md#aggregateMetricsFromFlow) | **GET** /api/v1/{tenant}/metrics/aggregates/{namespace}/{flowId}/{metric} | Get metrics aggregations for a specific flow
323
+ *KestraIoKestraSdk.MetricsApi* | [**aggregateMetricsFromTask**](docs/MetricsApi.md#aggregateMetricsFromTask) | **GET** /api/v1/{tenant}/metrics/aggregates/{namespace}/{flowId}/{taskId}/{metric} | Get metrics aggregations for a specific flow
324
+ *KestraIoKestraSdk.MetricsApi* | [**listFlowMetrics**](docs/MetricsApi.md#listFlowMetrics) | **GET** /api/v1/{tenant}/metrics/names/{namespace}/{flowId} | Get metrics names for a specific flow
325
+ *KestraIoKestraSdk.MetricsApi* | [**listTaskMetrics**](docs/MetricsApi.md#listTaskMetrics) | **GET** /api/v1/{tenant}/metrics/names/{namespace}/{flowId}/{taskId} | Get metrics names for a specific task in a flow
326
+ *KestraIoKestraSdk.MetricsApi* | [**listTasksWithMetrics**](docs/MetricsApi.md#listTasksWithMetrics) | **GET** /api/v1/{tenant}/metrics/tasks/{namespace}/{flowId} | Get tasks id that have metrics for a specific flow, include deleted or renamed tasks
327
+ *KestraIoKestraSdk.MetricsApi* | [**searchByExecution**](docs/MetricsApi.md#searchByExecution) | **GET** /api/v1/{tenant}/metrics/{executionId} | Get metrics for a specific execution
328
+ *KestraIoKestraSdk.MiscApi* | [**createBasicAuth**](docs/MiscApi.md#createBasicAuth) | **POST** /api/v1/{tenant}/basicAuth | Configure basic authentication for the instance.
329
+ *KestraIoKestraSdk.MiscApi* | [**getBasicAuthConfigErrors**](docs/MiscApi.md#getBasicAuthConfigErrors) | **GET** /api/v1/basicAuthValidationErrors | Retrieve the instance configuration.
330
+ *KestraIoKestraSdk.MiscApi* | [**getConfiguration**](docs/MiscApi.md#getConfiguration) | **GET** /api/v1/configs | Retrieve the instance configuration.
331
+ *KestraIoKestraSdk.MiscApi* | [**getUsages**](docs/MiscApi.md#getUsages) | **GET** /api/v1/{tenant}/usages/all | Retrieve instance usage information
332
+ *KestraIoKestraSdk.MiscApi* | [**licenseInfo**](docs/MiscApi.md#licenseInfo) | **GET** /api/v1/license-info | Retrieve license information
333
+ *KestraIoKestraSdk.MiscApi* | [**listActions**](docs/MiscApi.md#listActions) | **GET** /api/v1/{tenant}/acls/actions | Retrieve list of actions
334
+ *KestraIoKestraSdk.MiscApi* | [**listPermissions**](docs/MiscApi.md#listPermissions) | **GET** /api/v1/{tenant}/acls/permissions | Retrieve list of permissions
335
+ *KestraIoKestraSdk.MiscApi* | [**setupConfiguration**](docs/MiscApi.md#setupConfiguration) | **GET** /api/v1/setup | Retrieve current setup configuration
336
+ *KestraIoKestraSdk.MiscApi* | [**setupKestra**](docs/MiscApi.md#setupKestra) | **POST** /api/v1/setup | Create the first Superadmin user
337
+ *KestraIoKestraSdk.MiscApi* | [**tenantUsage**](docs/MiscApi.md#tenantUsage) | **GET** /api/v1/{tenant}/usages | Retrieve usage information for the current tenant
338
+ *KestraIoKestraSdk.NamespacesApi* | [**autocompleteNamespaces**](docs/NamespacesApi.md#autocompleteNamespaces) | **POST** /api/v1/{tenant}/namespaces/autocomplete | List namespaces for autocomplete
339
+ *KestraIoKestraSdk.NamespacesApi* | [**createNamespace**](docs/NamespacesApi.md#createNamespace) | **POST** /api/v1/{tenant}/namespaces | Create a namespace
340
+ *KestraIoKestraSdk.NamespacesApi* | [**deleteNamespace**](docs/NamespacesApi.md#deleteNamespace) | **DELETE** /api/v1/{tenant}/namespaces/{id} | Delete a namespace
341
+ *KestraIoKestraSdk.NamespacesApi* | [**deleteSecret**](docs/NamespacesApi.md#deleteSecret) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/secrets/{key} | Delete a secret for a namespace
342
+ *KestraIoKestraSdk.NamespacesApi* | [**getInheritedSecrets**](docs/NamespacesApi.md#getInheritedSecrets) | **GET** /api/v1/{tenant}/namespaces/{namespace}/inherited-secrets | List inherited secrets
343
+ *KestraIoKestraSdk.NamespacesApi* | [**getNamespace**](docs/NamespacesApi.md#getNamespace) | **GET** /api/v1/{tenant}/namespaces/{id} | Retrieve namespace details
344
+ *KestraIoKestraSdk.NamespacesApi* | [**inheritedPluginDefaults**](docs/NamespacesApi.md#inheritedPluginDefaults) | **GET** /api/v1/{tenant}/namespaces/{id}/inherited-plugindefaults | List inherited plugin defaults
345
+ *KestraIoKestraSdk.NamespacesApi* | [**inheritedVariables**](docs/NamespacesApi.md#inheritedVariables) | **GET** /api/v1/{tenant}/namespaces/{id}/inherited-variables | List inherited variables
346
+ *KestraIoKestraSdk.NamespacesApi* | [**listNamespaceSecrets**](docs/NamespacesApi.md#listNamespaceSecrets) | **GET** /api/v1/{tenant}/namespaces/{namespace}/secrets | Get secrets for a namespace
347
+ *KestraIoKestraSdk.NamespacesApi* | [**patchSecret**](docs/NamespacesApi.md#patchSecret) | **PATCH** /api/v1/{tenant}/namespaces/{namespace}/secrets/{key} | Patch a secret metadata for a namespace
348
+ *KestraIoKestraSdk.NamespacesApi* | [**putSecrets**](docs/NamespacesApi.md#putSecrets) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/secrets | Update secrets for a namespace
349
+ *KestraIoKestraSdk.NamespacesApi* | [**searchNamespaces**](docs/NamespacesApi.md#searchNamespaces) | **GET** /api/v1/{tenant}/namespaces/search | Search for namespaces
350
+ *KestraIoKestraSdk.NamespacesApi* | [**updateNamespace**](docs/NamespacesApi.md#updateNamespace) | **PUT** /api/v1/{tenant}/namespaces/{id} | Update a namespace
351
+ *KestraIoKestraSdk.PluginsApi* | [**getAllInputTypes**](docs/PluginsApi.md#getAllInputTypes) | **GET** /api/v1/plugins/inputs | Get all types for an inputs
352
+ *KestraIoKestraSdk.PluginsApi* | [**getPluginBySubgroups**](docs/PluginsApi.md#getPluginBySubgroups) | **GET** /api/v1/plugins/groups/subgroups | Get plugins group by subgroups
353
+ *KestraIoKestraSdk.PluginsApi* | [**getPluginDocumentation**](docs/PluginsApi.md#getPluginDocumentation) | **GET** /api/v1/plugins/{cls} | Get plugin documentation
354
+ *KestraIoKestraSdk.PluginsApi* | [**getPluginDocumentationFromVersion**](docs/PluginsApi.md#getPluginDocumentationFromVersion) | **GET** /api/v1/plugins/{cls}/versions/{version} | Get plugin documentation
355
+ *KestraIoKestraSdk.PluginsApi* | [**getPluginGroupIcons**](docs/PluginsApi.md#getPluginGroupIcons) | **GET** /api/v1/plugins/icons/groups | Get plugins icons
356
+ *KestraIoKestraSdk.PluginsApi* | [**getPluginIcons**](docs/PluginsApi.md#getPluginIcons) | **GET** /api/v1/plugins/icons | Get plugins icons
357
+ *KestraIoKestraSdk.PluginsApi* | [**getPluginVersions**](docs/PluginsApi.md#getPluginVersions) | **GET** /api/v1/plugins/{cls}/versions | Get all versions for a plugin
358
+ *KestraIoKestraSdk.PluginsApi* | [**getPropertiesFromType**](docs/PluginsApi.md#getPropertiesFromType) | **GET** /api/v1/plugins/properties/{type} | Get the properties part of the JSON schema for a type
359
+ *KestraIoKestraSdk.PluginsApi* | [**getSchemaFromInputType**](docs/PluginsApi.md#getSchemaFromInputType) | **GET** /api/v1/plugins/inputs/{type} | Get the JSON schema for an input type
360
+ *KestraIoKestraSdk.PluginsApi* | [**getSchemasFromType**](docs/PluginsApi.md#getSchemasFromType) | **GET** /api/v1/plugins/schemas/{type} | Get the JSON schema for a type
361
+ *KestraIoKestraSdk.PluginsApi* | [**getVersionedPluginDetails**](docs/PluginsApi.md#getVersionedPluginDetails) | **GET** /api/v1/instance/versioned-plugins/{groupId}/{artifactId} | Retrieve details of a plugin artifact
362
+ *KestraIoKestraSdk.PluginsApi* | [**getVersionedPluginDetailsFromVersion**](docs/PluginsApi.md#getVersionedPluginDetailsFromVersion) | **GET** /api/v1/instance/versioned-plugins/{groupId}/{artifactId}/{version} | Retrieve details of a specific plugin artifact version
363
+ *KestraIoKestraSdk.PluginsApi* | [**installVersionedPlugins**](docs/PluginsApi.md#installVersionedPlugins) | **POST** /api/v1/instance/versioned-plugins/install | Install specified plugin artifacts
364
+ *KestraIoKestraSdk.PluginsApi* | [**listAvailableVersionedPlugins**](docs/PluginsApi.md#listAvailableVersionedPlugins) | **GET** /api/v1/instance/versioned-plugins/available | List available plugin artifacts
365
+ *KestraIoKestraSdk.PluginsApi* | [**listPlugins**](docs/PluginsApi.md#listPlugins) | **GET** /api/v1/plugins | Get list of plugins
366
+ *KestraIoKestraSdk.PluginsApi* | [**listVersionedPlugin**](docs/PluginsApi.md#listVersionedPlugin) | **GET** /api/v1/instance/versioned-plugins | List installed plugin artifacts
367
+ *KestraIoKestraSdk.PluginsApi* | [**resolveVersionedPlugins**](docs/PluginsApi.md#resolveVersionedPlugins) | **POST** /api/v1/instance/versioned-plugins/resolve | Resolve versions for specified plugin artifacts
368
+ *KestraIoKestraSdk.PluginsApi* | [**uninstallVersionedPlugins**](docs/PluginsApi.md#uninstallVersionedPlugins) | **DELETE** /api/v1/instance/versioned-plugins/uninstall | Uninstall plugin artifacts
369
+ *KestraIoKestraSdk.PluginsApi* | [**uploadVersionedPlugins**](docs/PluginsApi.md#uploadVersionedPlugins) | **POST** /api/v1/instance/versioned-plugins/upload | Upload a plugin artifact JAR file
370
+ *KestraIoKestraSdk.RolesApi* | [**autocompleteRoles**](docs/RolesApi.md#autocompleteRoles) | **POST** /api/v1/{tenant}/roles/autocomplete | List roles for autocomplete
371
+ *KestraIoKestraSdk.RolesApi* | [**createRole**](docs/RolesApi.md#createRole) | **POST** /api/v1/{tenant}/roles | Create a role
372
+ *KestraIoKestraSdk.RolesApi* | [**deleteRole**](docs/RolesApi.md#deleteRole) | **DELETE** /api/v1/{tenant}/roles/{id} | Delete a role
373
+ *KestraIoKestraSdk.RolesApi* | [**getRole**](docs/RolesApi.md#getRole) | **GET** /api/v1/{tenant}/roles/{id} | Retrieve a role
374
+ *KestraIoKestraSdk.RolesApi* | [**listRolesFromGivenIds**](docs/RolesApi.md#listRolesFromGivenIds) | **POST** /api/v1/{tenant}/roles/ids | List roles by ids
375
+ *KestraIoKestraSdk.RolesApi* | [**searchRoles**](docs/RolesApi.md#searchRoles) | **GET** /api/v1/{tenant}/roles/search | Search for roles
376
+ *KestraIoKestraSdk.RolesApi* | [**updateRole**](docs/RolesApi.md#updateRole) | **PUT** /api/v1/{tenant}/roles/{id} | Update a role
377
+ *KestraIoKestraSdk.SCIMConfigurationApi* | [**getAllResourceTypes**](docs/SCIMConfigurationApi.md#getAllResourceTypes) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/ResourceTypes |
378
+ *KestraIoKestraSdk.SCIMConfigurationApi* | [**getAllSchemas**](docs/SCIMConfigurationApi.md#getAllSchemas) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Schemas |
379
+ *KestraIoKestraSdk.SCIMConfigurationApi* | [**getResourceType**](docs/SCIMConfigurationApi.md#getResourceType) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/ResourceTypes/{name} |
380
+ *KestraIoKestraSdk.SCIMConfigurationApi* | [**getSchema**](docs/SCIMConfigurationApi.md#getSchema) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Schemas/{uri} |
381
+ *KestraIoKestraSdk.SCIMConfigurationApi* | [**getServiceProviderConfiguration**](docs/SCIMConfigurationApi.md#getServiceProviderConfiguration) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/ServiceProviderConfig |
382
+ *KestraIoKestraSdk.SCIMGroupsApi* | [**createSCIMResourceByIdGroups**](docs/SCIMGroupsApi.md#createSCIMResourceByIdGroups) | **POST** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups |
383
+ *KestraIoKestraSdk.SCIMGroupsApi* | [**deleteGroups**](docs/SCIMGroupsApi.md#deleteGroups) | **DELETE** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/{id} |
384
+ *KestraIoKestraSdk.SCIMGroupsApi* | [**findGroups**](docs/SCIMGroupsApi.md#findGroups) | **POST** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/.search |
385
+ *KestraIoKestraSdk.SCIMGroupsApi* | [**getSCIMResourceByIdGroups**](docs/SCIMGroupsApi.md#getSCIMResourceByIdGroups) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/{id} |
386
+ *KestraIoKestraSdk.SCIMGroupsApi* | [**patchGroups**](docs/SCIMGroupsApi.md#patchGroups) | **PATCH** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/{id} |
387
+ *KestraIoKestraSdk.SCIMGroupsApi* | [**queryGroups**](docs/SCIMGroupsApi.md#queryGroups) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups |
388
+ *KestraIoKestraSdk.SCIMGroupsApi* | [**updateGroups**](docs/SCIMGroupsApi.md#updateGroups) | **PUT** /api/v1/{tenant}/integrations/{integration}/scim/v2/Groups/{id} |
389
+ *KestraIoKestraSdk.SCIMUsersApi* | [**createSCIMResourceByIdUsers**](docs/SCIMUsersApi.md#createSCIMResourceByIdUsers) | **POST** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users |
390
+ *KestraIoKestraSdk.SCIMUsersApi* | [**deleteUsers**](docs/SCIMUsersApi.md#deleteUsers) | **DELETE** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/{id} |
391
+ *KestraIoKestraSdk.SCIMUsersApi* | [**findUsers**](docs/SCIMUsersApi.md#findUsers) | **POST** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/.search |
392
+ *KestraIoKestraSdk.SCIMUsersApi* | [**getSCIMResourceByIdUsers**](docs/SCIMUsersApi.md#getSCIMResourceByIdUsers) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/{id} |
393
+ *KestraIoKestraSdk.SCIMUsersApi* | [**patchUsers**](docs/SCIMUsersApi.md#patchUsers) | **PATCH** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/{id} |
394
+ *KestraIoKestraSdk.SCIMUsersApi* | [**queryUsers**](docs/SCIMUsersApi.md#queryUsers) | **GET** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users |
395
+ *KestraIoKestraSdk.SCIMUsersApi* | [**updateUsers**](docs/SCIMUsersApi.md#updateUsers) | **PUT** /api/v1/{tenant}/integrations/{integration}/scim/v2/Users/{id} |
396
+ *KestraIoKestraSdk.SecurityIntegrationsApi* | [**createSecurityIntegration**](docs/SecurityIntegrationsApi.md#createSecurityIntegration) | **POST** /api/v1/{tenant}/security-integrations | Create a security integration
397
+ *KestraIoKestraSdk.SecurityIntegrationsApi* | [**deleteSecurityIntegration**](docs/SecurityIntegrationsApi.md#deleteSecurityIntegration) | **DELETE** /api/v1/{tenant}/security-integrations/{id} | Delete a security integration
398
+ *KestraIoKestraSdk.SecurityIntegrationsApi* | [**disableSecurityIntegration**](docs/SecurityIntegrationsApi.md#disableSecurityIntegration) | **POST** /api/v1/{tenant}/security-integrations/{id}/disable | Disable a security integration
399
+ *KestraIoKestraSdk.SecurityIntegrationsApi* | [**enableSecurityIntegration**](docs/SecurityIntegrationsApi.md#enableSecurityIntegration) | **POST** /api/v1/{tenant}/security-integrations/{id}/enable | Enable a security integration
400
+ *KestraIoKestraSdk.SecurityIntegrationsApi* | [**getSecurityIntegration**](docs/SecurityIntegrationsApi.md#getSecurityIntegration) | **GET** /api/v1/{tenant}/security-integrations/{id} | Retrieve a security integration
401
+ *KestraIoKestraSdk.SecurityIntegrationsApi* | [**listSecurityIntegrations**](docs/SecurityIntegrationsApi.md#listSecurityIntegrations) | **GET** /api/v1/{tenant}/security-integrations | List all security integrations
402
+ *KestraIoKestraSdk.ServiceAccountApi* | [**createServiceAccount**](docs/ServiceAccountApi.md#createServiceAccount) | **POST** /api/v1/{tenant}/service-accounts | Create a user service account
403
+ *KestraIoKestraSdk.ServiceAccountApi* | [**deleteServiceAccount**](docs/ServiceAccountApi.md#deleteServiceAccount) | **DELETE** /api/v1/{tenant}/service-accounts/{id} | Delete a service account
404
+ *KestraIoKestraSdk.ServiceAccountApi* | [**getServiceAccount**](docs/ServiceAccountApi.md#getServiceAccount) | **GET** /api/v1/{tenant}/service-accounts/{id} | Retrieve a service account
405
+ *KestraIoKestraSdk.ServiceAccountApi* | [**updateServiceAccount**](docs/ServiceAccountApi.md#updateServiceAccount) | **PUT** /api/v1/{tenant}/service-accounts/{id} | Update a user service account
406
+ *KestraIoKestraSdk.ServicesApi* | [**getActiveServices**](docs/ServicesApi.md#getActiveServices) | **GET** /api/v1/instance/services/active | List all active services
407
+ *KestraIoKestraSdk.ServicesApi* | [**getService**](docs/ServicesApi.md#getService) | **GET** /api/v1/instance/services/{id} | Retrieve details of a specific service
408
+ *KestraIoKestraSdk.ServicesApi* | [**searchServices**](docs/ServicesApi.md#searchServices) | **GET** /api/v1/instance/services/search | Search for a service (e.g. Worker, Executor, etc)
409
+ *KestraIoKestraSdk.TenantAccessApi* | [**createTenantAccess**](docs/TenantAccessApi.md#createTenantAccess) | **POST** /api/v1/{tenant}/tenant-access | Create tenant access for a user
410
+ *KestraIoKestraSdk.TenantAccessApi* | [**createTenantAccess1**](docs/TenantAccessApi.md#createTenantAccess1) | **PUT** /api/v1/{tenant}/tenant-access/{userId} | Create tenant access for a user
411
+ *KestraIoKestraSdk.TenantAccessApi* | [**deleteTenantAccess**](docs/TenantAccessApi.md#deleteTenantAccess) | **DELETE** /api/v1/{tenant}/tenant-access/{userId} | Delete tenant access for a user
412
+ *KestraIoKestraSdk.TenantAccessApi* | [**getTenantAccess**](docs/TenantAccessApi.md#getTenantAccess) | **GET** /api/v1/{tenant}/tenant-access/{userId} | Retrieve tenant access for a user
413
+ *KestraIoKestraSdk.TenantAccessApi* | [**listTenantAccess**](docs/TenantAccessApi.md#listTenantAccess) | **GET** /api/v1/{tenant}/tenant-access | Retrieve users belonging to the tenant
414
+ *KestraIoKestraSdk.TenantsApi* | [**callDelete**](docs/TenantsApi.md#callDelete) | **DELETE** /api/v1/tenants/{id} | Delete a tenant and all its resources
415
+ *KestraIoKestraSdk.TenantsApi* | [**create**](docs/TenantsApi.md#create) | **POST** /api/v1/tenants | Create a tenant
416
+ *KestraIoKestraSdk.TenantsApi* | [**find**](docs/TenantsApi.md#find) | **GET** /api/v1/tenants/search | Search for tenants
417
+ *KestraIoKestraSdk.TenantsApi* | [**get**](docs/TenantsApi.md#get) | **GET** /api/v1/tenants/{id} | Retrieve a tenant
418
+ *KestraIoKestraSdk.TenantsApi* | [**getFlowDependenciesFromTenant**](docs/TenantsApi.md#getFlowDependenciesFromTenant) | **GET** /api/v1/{tenant}/dependencies | Get tenant dependencies
419
+ *KestraIoKestraSdk.TenantsApi* | [**setLogo**](docs/TenantsApi.md#setLogo) | **POST** /api/v1/tenants/{id}/logo | Set a tenant logo
420
+ *KestraIoKestraSdk.TenantsApi* | [**update**](docs/TenantsApi.md#update) | **PUT** /api/v1/tenants/{id} | Update a tenant
421
+ *KestraIoKestraSdk.TestSuitesApi* | [**createTestSuite**](docs/TestSuitesApi.md#createTestSuite) | **POST** /api/v1/{tenant}/tests | Create a test from YAML source
422
+ *KestraIoKestraSdk.TestSuitesApi* | [**deleteTestSuite**](docs/TestSuitesApi.md#deleteTestSuite) | **DELETE** /api/v1/{tenant}/tests/{namespace}/{id} | Delete a test
423
+ *KestraIoKestraSdk.TestSuitesApi* | [**deleteTestSuitesByIds**](docs/TestSuitesApi.md#deleteTestSuitesByIds) | **DELETE** /api/v1/{tenant}/tests/by-ids | Delete multiple tests by id
424
+ *KestraIoKestraSdk.TestSuitesApi* | [**disableTestSuitesByIds**](docs/TestSuitesApi.md#disableTestSuitesByIds) | **POST** /api/v1/{tenant}/tests/disable/by-ids | Disable multiple tests by id
425
+ *KestraIoKestraSdk.TestSuitesApi* | [**enableTestSuitesByIds**](docs/TestSuitesApi.md#enableTestSuitesByIds) | **POST** /api/v1/{tenant}/tests/enable/by-ids | Enable multiple tests by id
426
+ *KestraIoKestraSdk.TestSuitesApi* | [**getTestResult**](docs/TestSuitesApi.md#getTestResult) | **GET** /api/v1/{tenant}/tests/results/{id} | Get a test result
427
+ *KestraIoKestraSdk.TestSuitesApi* | [**getTestSuite**](docs/TestSuitesApi.md#getTestSuite) | **GET** /api/v1/{tenant}/tests/{namespace}/{id} | Retrieve a test
428
+ *KestraIoKestraSdk.TestSuitesApi* | [**getTestsLastResult**](docs/TestSuitesApi.md#getTestsLastResult) | **POST** /api/v1/{tenant}/tests/results/search/last | Get tests last result
429
+ *KestraIoKestraSdk.TestSuitesApi* | [**runTestSuite**](docs/TestSuitesApi.md#runTestSuite) | **POST** /api/v1/{tenant}/tests/{namespace}/{id}/run | Run a full test
430
+ *KestraIoKestraSdk.TestSuitesApi* | [**searchTestSuites**](docs/TestSuitesApi.md#searchTestSuites) | **GET** /api/v1/{tenant}/tests/search | Search for tests
431
+ *KestraIoKestraSdk.TestSuitesApi* | [**updateTestSuite**](docs/TestSuitesApi.md#updateTestSuite) | **PUT** /api/v1/{tenant}/tests/{namespace}/{id} | Update a test from YAML source
432
+ *KestraIoKestraSdk.TestSuitesApi* | [**validateTestSuite**](docs/TestSuitesApi.md#validateTestSuite) | **POST** /api/v1/{tenant}/tests/validate | Validate a test
433
+ *KestraIoKestraSdk.TriggersApi* | [**deleteBackfill**](docs/TriggersApi.md#deleteBackfill) | **POST** /api/v1/{tenant}/triggers/backfill/delete | Delete a backfill
434
+ *KestraIoKestraSdk.TriggersApi* | [**deleteBackfillByIds**](docs/TriggersApi.md#deleteBackfillByIds) | **POST** /api/v1/{tenant}/triggers/backfill/delete/by-triggers | Delete backfill for given triggers
435
+ *KestraIoKestraSdk.TriggersApi* | [**deleteBackfillByQuery**](docs/TriggersApi.md#deleteBackfillByQuery) | **POST** /api/v1/{tenant}/triggers/backfill/delete/by-query | Delete backfill for given triggers
436
+ *KestraIoKestraSdk.TriggersApi* | [**disabledTriggersByIds**](docs/TriggersApi.md#disabledTriggersByIds) | **POST** /api/v1/{tenant}/triggers/set-disabled/by-triggers | Disable/enable given triggers
437
+ *KestraIoKestraSdk.TriggersApi* | [**disabledTriggersByQuery**](docs/TriggersApi.md#disabledTriggersByQuery) | **POST** /api/v1/{tenant}/triggers/set-disabled/by-query | Disable/enable triggers by query parameters
438
+ *KestraIoKestraSdk.TriggersApi* | [**pauseBackfill**](docs/TriggersApi.md#pauseBackfill) | **PUT** /api/v1/{tenant}/triggers/backfill/pause | Pause a backfill
439
+ *KestraIoKestraSdk.TriggersApi* | [**pauseBackfillByIds**](docs/TriggersApi.md#pauseBackfillByIds) | **POST** /api/v1/{tenant}/triggers/backfill/pause/by-triggers | Pause backfill for given triggers
440
+ *KestraIoKestraSdk.TriggersApi* | [**pauseBackfillByQuery**](docs/TriggersApi.md#pauseBackfillByQuery) | **POST** /api/v1/{tenant}/triggers/backfill/pause/by-query | Pause backfill for given triggers
441
+ *KestraIoKestraSdk.TriggersApi* | [**restartTrigger**](docs/TriggersApi.md#restartTrigger) | **POST** /api/v1/{tenant}/triggers/{namespace}/{flowId}/{triggerId}/restart | Restart a trigger
442
+ *KestraIoKestraSdk.TriggersApi* | [**searchTriggers**](docs/TriggersApi.md#searchTriggers) | **GET** /api/v1/{tenant}/triggers/search | Search for triggers
443
+ *KestraIoKestraSdk.TriggersApi* | [**searchTriggersForFlow**](docs/TriggersApi.md#searchTriggersForFlow) | **GET** /api/v1/{tenant}/triggers/{namespace}/{flowId} | Get all triggers for a flow
444
+ *KestraIoKestraSdk.TriggersApi* | [**unlockTrigger**](docs/TriggersApi.md#unlockTrigger) | **POST** /api/v1/{tenant}/triggers/{namespace}/{flowId}/{triggerId}/unlock | Unlock a trigger
445
+ *KestraIoKestraSdk.TriggersApi* | [**unlockTriggersByIds**](docs/TriggersApi.md#unlockTriggersByIds) | **POST** /api/v1/{tenant}/triggers/unlock/by-triggers | Unlock given triggers
446
+ *KestraIoKestraSdk.TriggersApi* | [**unlockTriggersByQuery**](docs/TriggersApi.md#unlockTriggersByQuery) | **POST** /api/v1/{tenant}/triggers/unlock/by-query | Unlock triggers by query parameters
447
+ *KestraIoKestraSdk.TriggersApi* | [**unpauseBackfill**](docs/TriggersApi.md#unpauseBackfill) | **PUT** /api/v1/{tenant}/triggers/backfill/unpause | Unpause a backfill
448
+ *KestraIoKestraSdk.TriggersApi* | [**unpauseBackfillByIds**](docs/TriggersApi.md#unpauseBackfillByIds) | **POST** /api/v1/{tenant}/triggers/backfill/unpause/by-triggers | Unpause backfill for given triggers
449
+ *KestraIoKestraSdk.TriggersApi* | [**unpauseBackfillByQuery**](docs/TriggersApi.md#unpauseBackfillByQuery) | **POST** /api/v1/{tenant}/triggers/backfill/unpause/by-query | Unpause backfill for given triggers
450
+ *KestraIoKestraSdk.TriggersApi* | [**updateTrigger**](docs/TriggersApi.md#updateTrigger) | **PUT** /api/v1/{tenant}/triggers | Update a trigger
451
+ *KestraIoKestraSdk.UsersApi* | [**autocompleteUsers**](docs/UsersApi.md#autocompleteUsers) | **POST** /api/v1/{tenant}/tenant-access/autocomplete | List users for autocomplete
452
+ *KestraIoKestraSdk.UsersApi* | [**createApiTokensForUser**](docs/UsersApi.md#createApiTokensForUser) | **POST** /api/v1/users/{id}/api-tokens | Create new API Token for a specific user
453
+ *KestraIoKestraSdk.UsersApi* | [**createApiTokensForUser1**](docs/UsersApi.md#createApiTokensForUser1) | **POST** /api/v1/{tenant}/service-accounts/{id}/api-tokens | Create new API Token for a specific user
454
+ *KestraIoKestraSdk.UsersApi* | [**createUser**](docs/UsersApi.md#createUser) | **POST** /api/v1/users | Create a new user account
455
+ *KestraIoKestraSdk.UsersApi* | [**deleteApiToken**](docs/UsersApi.md#deleteApiToken) | **DELETE** /api/v1/users/{id}/api-tokens/{tokenId} | Delete an API Token for specific user and token id
456
+ *KestraIoKestraSdk.UsersApi* | [**deleteApiToken1**](docs/UsersApi.md#deleteApiToken1) | **DELETE** /api/v1/{tenant}/service-accounts/{id}/api-tokens/{tokenId} | Delete an API Token for specific user and token id
457
+ *KestraIoKestraSdk.UsersApi* | [**deleteRefreshToken**](docs/UsersApi.md#deleteRefreshToken) | **DELETE** /api/v1/users/{id}/refresh-token | Delete a user refresh token
458
+ *KestraIoKestraSdk.UsersApi* | [**deleteUser**](docs/UsersApi.md#deleteUser) | **DELETE** /api/v1/users/{id} | Delete a user
459
+ *KestraIoKestraSdk.UsersApi* | [**deleteUserAuthMethod**](docs/UsersApi.md#deleteUserAuthMethod) | **DELETE** /api/v1/users/{id}/auths/{auth} | Update user password
460
+ *KestraIoKestraSdk.UsersApi* | [**getUser**](docs/UsersApi.md#getUser) | **GET** /api/v1/users/{id} | Get a user
461
+ *KestraIoKestraSdk.UsersApi* | [**impersonate**](docs/UsersApi.md#impersonate) | **POST** /api/v1/users/{id}/impersonate | Impersonate a user
462
+ *KestraIoKestraSdk.UsersApi* | [**listApiTokens**](docs/UsersApi.md#listApiTokens) | **GET** /api/v1/users/{id}/api-tokens | List API tokens for a specific user
463
+ *KestraIoKestraSdk.UsersApi* | [**listApiTokens1**](docs/UsersApi.md#listApiTokens1) | **GET** /api/v1/{tenant}/service-accounts/{id}/api-tokens | List API tokens for a specific user
464
+ *KestraIoKestraSdk.UsersApi* | [**listUsers**](docs/UsersApi.md#listUsers) | **GET** /api/v1/users | Retrieve users
465
+ *KestraIoKestraSdk.UsersApi* | [**patchUser**](docs/UsersApi.md#patchUser) | **PATCH** /api/v1/users/{id} | Update user details
466
+ *KestraIoKestraSdk.UsersApi* | [**patchUserDemo**](docs/UsersApi.md#patchUserDemo) | **PATCH** /api/v1/users/{id}/restricted | Update user demo
467
+ *KestraIoKestraSdk.UsersApi* | [**patchUserPassword**](docs/UsersApi.md#patchUserPassword) | **PATCH** /api/v1/users/{id}/password | Update user password
468
+ *KestraIoKestraSdk.UsersApi* | [**patchUserSuperAdmin**](docs/UsersApi.md#patchUserSuperAdmin) | **PATCH** /api/v1/users/{id}/superadmin | Update user superadmin privileges
469
+ *KestraIoKestraSdk.UsersApi* | [**updateCurrentUserPassword**](docs/UsersApi.md#updateCurrentUserPassword) | **PUT** /api/v1/me/password | Update authenticated user password
470
+ *KestraIoKestraSdk.UsersApi* | [**updateUser**](docs/UsersApi.md#updateUser) | **PUT** /api/v1/users/{id} | Update a user account
471
+ *KestraIoKestraSdk.UsersApi* | [**updateUserGroups**](docs/UsersApi.md#updateUserGroups) | **PUT** /api/v1/{tenant}/users/{id}/groups | Update the list of groups a user belongs to for the given tenant
472
+ *KestraIoKestraSdk.WorkerGroupsApi* | [**createWorkerGroup**](docs/WorkerGroupsApi.md#createWorkerGroup) | **POST** /api/v1/instance/workergroups | Create a worker group
473
+ *KestraIoKestraSdk.WorkerGroupsApi* | [**deleteWorkerGroupById**](docs/WorkerGroupsApi.md#deleteWorkerGroupById) | **DELETE** /api/v1/instance/workergroups/{id} | Delete a worker group
474
+ *KestraIoKestraSdk.WorkerGroupsApi* | [**getWorkerGroupById**](docs/WorkerGroupsApi.md#getWorkerGroupById) | **GET** /api/v1/instance/workergroups/{id} | Retrieve details of a specific worker group
475
+ *KestraIoKestraSdk.WorkerGroupsApi* | [**listWorkerGroups**](docs/WorkerGroupsApi.md#listWorkerGroups) | **GET** /api/v1/instance/workergroups | List all worker groups
476
+ *KestraIoKestraSdk.WorkerGroupsApi* | [**updateWorkerGroupById**](docs/WorkerGroupsApi.md#updateWorkerGroupById) | **PUT** /api/v1/instance/workergroups/{id} | Update a worker group
477
+
478
+
479
+ ## Documentation for Models
480
+
481
+ - [KestraIoKestraSdk.AbstractFlow](docs/AbstractFlow.md)
482
+ - [KestraIoKestraSdk.AbstractFlowLabels](docs/AbstractFlowLabels.md)
483
+ - [KestraIoKestraSdk.AbstractGraph](docs/AbstractGraph.md)
484
+ - [KestraIoKestraSdk.AbstractGraphBranchType](docs/AbstractGraphBranchType.md)
485
+ - [KestraIoKestraSdk.AbstractMetricEntryObject](docs/AbstractMetricEntryObject.md)
486
+ - [KestraIoKestraSdk.AbstractTrigger](docs/AbstractTrigger.md)
487
+ - [KestraIoKestraSdk.AbstractTriggerForExecution](docs/AbstractTriggerForExecution.md)
488
+ - [KestraIoKestraSdk.AbstractUser](docs/AbstractUser.md)
489
+ - [KestraIoKestraSdk.AbstractUserTenantIdentityProvider](docs/AbstractUserTenantIdentityProvider.md)
490
+ - [KestraIoKestraSdk.Action](docs/Action.md)
491
+ - [KestraIoKestraSdk.ApiAuth](docs/ApiAuth.md)
492
+ - [KestraIoKestraSdk.ApiAutocomplete](docs/ApiAutocomplete.md)
493
+ - [KestraIoKestraSdk.ApiGroupSummary](docs/ApiGroupSummary.md)
494
+ - [KestraIoKestraSdk.ApiIds](docs/ApiIds.md)
495
+ - [KestraIoKestraSdk.ApiRoleSummary](docs/ApiRoleSummary.md)
496
+ - [KestraIoKestraSdk.ApiSecretListResponse](docs/ApiSecretListResponse.md)
497
+ - [KestraIoKestraSdk.ApiSecretMeta](docs/ApiSecretMeta.md)
498
+ - [KestraIoKestraSdk.ApiSecretMetaEE](docs/ApiSecretMetaEE.md)
499
+ - [KestraIoKestraSdk.ApiSecretTag](docs/ApiSecretTag.md)
500
+ - [KestraIoKestraSdk.ApiSecretValue](docs/ApiSecretValue.md)
501
+ - [KestraIoKestraSdk.ApiTenant](docs/ApiTenant.md)
502
+ - [KestraIoKestraSdk.ApiUser](docs/ApiUser.md)
503
+ - [KestraIoKestraSdk.AppResponse](docs/AppResponse.md)
504
+ - [KestraIoKestraSdk.AppResponseUILayout](docs/AppResponseUILayout.md)
505
+ - [KestraIoKestraSdk.AppsControllerApiApp](docs/AppsControllerApiApp.md)
506
+ - [KestraIoKestraSdk.AppsControllerApiAppCatalogItem](docs/AppsControllerApiAppCatalogItem.md)
507
+ - [KestraIoKestraSdk.AppsControllerApiAppSource](docs/AppsControllerApiAppSource.md)
508
+ - [KestraIoKestraSdk.AppsControllerApiAppTags](docs/AppsControllerApiAppTags.md)
509
+ - [KestraIoKestraSdk.AppsControllerApiBulkImportResponse](docs/AppsControllerApiBulkImportResponse.md)
510
+ - [KestraIoKestraSdk.AppsControllerApiBulkImportResponseError](docs/AppsControllerApiBulkImportResponseError.md)
511
+ - [KestraIoKestraSdk.AppsControllerApiBulkOperationRequest](docs/AppsControllerApiBulkOperationRequest.md)
512
+ - [KestraIoKestraSdk.Assertion](docs/Assertion.md)
513
+ - [KestraIoKestraSdk.AssertionResult](docs/AssertionResult.md)
514
+ - [KestraIoKestraSdk.AssertionRunError](docs/AssertionRunError.md)
515
+ - [KestraIoKestraSdk.AttributeReference](docs/AttributeReference.md)
516
+ - [KestraIoKestraSdk.AuditLog](docs/AuditLog.md)
517
+ - [KestraIoKestraSdk.AuditLogControllerAuditLogDiff](docs/AuditLogControllerAuditLogDiff.md)
518
+ - [KestraIoKestraSdk.AuditLogControllerAuditLogOption](docs/AuditLogControllerAuditLogOption.md)
519
+ - [KestraIoKestraSdk.AuditLogControllerAuditLogWithUser](docs/AuditLogControllerAuditLogWithUser.md)
520
+ - [KestraIoKestraSdk.AuditLogControllerFindRequest](docs/AuditLogControllerFindRequest.md)
521
+ - [KestraIoKestraSdk.AuditLogDetail](docs/AuditLogDetail.md)
522
+ - [KestraIoKestraSdk.AuthControllerAuth](docs/AuthControllerAuth.md)
523
+ - [KestraIoKestraSdk.AuthControllerInvitationUserRequest](docs/AuthControllerInvitationUserRequest.md)
524
+ - [KestraIoKestraSdk.AuthControllerResetPasswordRequest](docs/AuthControllerResetPasswordRequest.md)
525
+ - [KestraIoKestraSdk.Backfill](docs/Backfill.md)
526
+ - [KestraIoKestraSdk.Banner](docs/Banner.md)
527
+ - [KestraIoKestraSdk.BannerType](docs/BannerType.md)
528
+ - [KestraIoKestraSdk.BaseAuditLog](docs/BaseAuditLog.md)
529
+ - [KestraIoKestraSdk.BaseResourcePatchRequest](docs/BaseResourcePatchRequest.md)
530
+ - [KestraIoKestraSdk.BaseResourceScimResource](docs/BaseResourceScimResource.md)
531
+ - [KestraIoKestraSdk.BaseResourceSearchRequest](docs/BaseResourceSearchRequest.md)
532
+ - [KestraIoKestraSdk.Binding](docs/Binding.md)
533
+ - [KestraIoKestraSdk.BindingType](docs/BindingType.md)
534
+ - [KestraIoKestraSdk.Blueprint](docs/Blueprint.md)
535
+ - [KestraIoKestraSdk.BlueprintControllerApiBlueprintItem](docs/BlueprintControllerApiBlueprintItem.md)
536
+ - [KestraIoKestraSdk.BlueprintControllerApiBlueprintItemWithSource](docs/BlueprintControllerApiBlueprintItemWithSource.md)
537
+ - [KestraIoKestraSdk.BlueprintControllerApiBlueprintTagItem](docs/BlueprintControllerApiBlueprintTagItem.md)
538
+ - [KestraIoKestraSdk.BlueprintControllerKind](docs/BlueprintControllerKind.md)
539
+ - [KestraIoKestraSdk.BlueprintWithFlow](docs/BlueprintWithFlow.md)
540
+ - [KestraIoKestraSdk.Breakpoint](docs/Breakpoint.md)
541
+ - [KestraIoKestraSdk.BulkErrorResponse](docs/BulkErrorResponse.md)
542
+ - [KestraIoKestraSdk.BulkResponse](docs/BulkResponse.md)
543
+ - [KestraIoKestraSdk.Cache](docs/Cache.md)
544
+ - [KestraIoKestraSdk.ChartChartOption](docs/ChartChartOption.md)
545
+ - [KestraIoKestraSdk.ChartFiltersOverrides](docs/ChartFiltersOverrides.md)
546
+ - [KestraIoKestraSdk.Concurrency](docs/Concurrency.md)
547
+ - [KestraIoKestraSdk.ConcurrencyBehavior](docs/ConcurrencyBehavior.md)
548
+ - [KestraIoKestraSdk.Condition](docs/Condition.md)
549
+ - [KestraIoKestraSdk.ConfigurationUsage](docs/ConfigurationUsage.md)
550
+ - [KestraIoKestraSdk.ConversionServiceProvider](docs/ConversionServiceProvider.md)
551
+ - [KestraIoKestraSdk.ConvertibleMultiValuesString](docs/ConvertibleMultiValuesString.md)
552
+ - [KestraIoKestraSdk.ConvertibleValuesListString](docs/ConvertibleValuesListString.md)
553
+ - [KestraIoKestraSdk.CreateApiTokenRequest](docs/CreateApiTokenRequest.md)
554
+ - [KestraIoKestraSdk.CreateApiTokenResponse](docs/CreateApiTokenResponse.md)
555
+ - [KestraIoKestraSdk.CreateSecurityIntegrationRequest](docs/CreateSecurityIntegrationRequest.md)
556
+ - [KestraIoKestraSdk.CrudEventType](docs/CrudEventType.md)
557
+ - [KestraIoKestraSdk.CustomLink](docs/CustomLink.md)
558
+ - [KestraIoKestraSdk.DailyExecutionStatistics](docs/DailyExecutionStatistics.md)
559
+ - [KestraIoKestraSdk.DailyExecutionStatisticsDuration](docs/DailyExecutionStatisticsDuration.md)
560
+ - [KestraIoKestraSdk.DailyExecutionStatisticsExecutionCounts](docs/DailyExecutionStatisticsExecutionCounts.md)
561
+ - [KestraIoKestraSdk.Dashboard](docs/Dashboard.md)
562
+ - [KestraIoKestraSdk.DashboardControllerPreviewRequest](docs/DashboardControllerPreviewRequest.md)
563
+ - [KestraIoKestraSdk.DeleteExecutionsByQueryRequest](docs/DeleteExecutionsByQueryRequest.md)
564
+ - [KestraIoKestraSdk.DeletedInterface](docs/DeletedInterface.md)
565
+ - [KestraIoKestraSdk.DependsOn](docs/DependsOn.md)
566
+ - [KestraIoKestraSdk.DocumentationWithSchema](docs/DocumentationWithSchema.md)
567
+ - [KestraIoKestraSdk.Email](docs/Email.md)
568
+ - [KestraIoKestraSdk.EventAppResponse](docs/EventAppResponse.md)
569
+ - [KestraIoKestraSdk.EventExecution](docs/EventExecution.md)
570
+ - [KestraIoKestraSdk.EventExecutionStatusEvent](docs/EventExecutionStatusEvent.md)
571
+ - [KestraIoKestraSdk.EventLogEntry](docs/EventLogEntry.md)
572
+ - [KestraIoKestraSdk.ExecutableTaskSubflowId](docs/ExecutableTaskSubflowId.md)
573
+ - [KestraIoKestraSdk.Execution](docs/Execution.md)
574
+ - [KestraIoKestraSdk.ExecutionControllerApiValidateExecutionInputsResponse](docs/ExecutionControllerApiValidateExecutionInputsResponse.md)
575
+ - [KestraIoKestraSdk.ExecutionControllerApiValidateExecutionInputsResponseApiInputAndValue](docs/ExecutionControllerApiValidateExecutionInputsResponseApiInputAndValue.md)
576
+ - [KestraIoKestraSdk.ExecutionControllerApiValidateExecutionInputsResponseApiInputError](docs/ExecutionControllerApiValidateExecutionInputsResponseApiInputError.md)
577
+ - [KestraIoKestraSdk.ExecutionControllerEvalResult](docs/ExecutionControllerEvalResult.md)
578
+ - [KestraIoKestraSdk.ExecutionControllerExecutionResponse](docs/ExecutionControllerExecutionResponse.md)
579
+ - [KestraIoKestraSdk.ExecutionControllerLastExecutionResponse](docs/ExecutionControllerLastExecutionResponse.md)
580
+ - [KestraIoKestraSdk.ExecutionControllerSetLabelsByIdsRequest](docs/ExecutionControllerSetLabelsByIdsRequest.md)
581
+ - [KestraIoKestraSdk.ExecutionControllerStateRequest](docs/ExecutionControllerStateRequest.md)
582
+ - [KestraIoKestraSdk.ExecutionControllerWebhookResponse](docs/ExecutionControllerWebhookResponse.md)
583
+ - [KestraIoKestraSdk.ExecutionKind](docs/ExecutionKind.md)
584
+ - [KestraIoKestraSdk.ExecutionMetadata](docs/ExecutionMetadata.md)
585
+ - [KestraIoKestraSdk.ExecutionRepositoryInterfaceChildFilter](docs/ExecutionRepositoryInterfaceChildFilter.md)
586
+ - [KestraIoKestraSdk.ExecutionRepositoryInterfaceFlowFilter](docs/ExecutionRepositoryInterfaceFlowFilter.md)
587
+ - [KestraIoKestraSdk.ExecutionStatusEvent](docs/ExecutionStatusEvent.md)
588
+ - [KestraIoKestraSdk.ExecutionTrigger](docs/ExecutionTrigger.md)
589
+ - [KestraIoKestraSdk.ExecutionUsage](docs/ExecutionUsage.md)
590
+ - [KestraIoKestraSdk.FileAttributes](docs/FileAttributes.md)
591
+ - [KestraIoKestraSdk.FileAttributesFileType](docs/FileAttributesFileType.md)
592
+ - [KestraIoKestraSdk.FileMetas](docs/FileMetas.md)
593
+ - [KestraIoKestraSdk.Filter](docs/Filter.md)
594
+ - [KestraIoKestraSdk.Fixtures](docs/Fixtures.md)
595
+ - [KestraIoKestraSdk.Flow](docs/Flow.md)
596
+ - [KestraIoKestraSdk.FlowAllOfLabels](docs/FlowAllOfLabels.md)
597
+ - [KestraIoKestraSdk.FlowControllerTaskValidationType](docs/FlowControllerTaskValidationType.md)
598
+ - [KestraIoKestraSdk.FlowForExecution](docs/FlowForExecution.md)
599
+ - [KestraIoKestraSdk.FlowForExecutionAllOfLabels](docs/FlowForExecutionAllOfLabels.md)
600
+ - [KestraIoKestraSdk.FlowGenerationPrompt](docs/FlowGenerationPrompt.md)
601
+ - [KestraIoKestraSdk.FlowGraph](docs/FlowGraph.md)
602
+ - [KestraIoKestraSdk.FlowGraphCluster](docs/FlowGraphCluster.md)
603
+ - [KestraIoKestraSdk.FlowGraphEdge](docs/FlowGraphEdge.md)
604
+ - [KestraIoKestraSdk.FlowId](docs/FlowId.md)
605
+ - [KestraIoKestraSdk.FlowInterface](docs/FlowInterface.md)
606
+ - [KestraIoKestraSdk.FlowNode](docs/FlowNode.md)
607
+ - [KestraIoKestraSdk.FlowRelation](docs/FlowRelation.md)
608
+ - [KestraIoKestraSdk.FlowScope](docs/FlowScope.md)
609
+ - [KestraIoKestraSdk.FlowTopologyGraph](docs/FlowTopologyGraph.md)
610
+ - [KestraIoKestraSdk.FlowTopologyGraphEdge](docs/FlowTopologyGraphEdge.md)
611
+ - [KestraIoKestraSdk.FlowUsage](docs/FlowUsage.md)
612
+ - [KestraIoKestraSdk.FlowWithSource](docs/FlowWithSource.md)
613
+ - [KestraIoKestraSdk.FlowWithSourceAllOfLabels](docs/FlowWithSourceAllOfLabels.md)
614
+ - [KestraIoKestraSdk.GroupIdentifier](docs/GroupIdentifier.md)
615
+ - [KestraIoKestraSdk.GroupIdentifierMembership](docs/GroupIdentifierMembership.md)
616
+ - [KestraIoKestraSdk.GroupUsage](docs/GroupUsage.md)
617
+ - [KestraIoKestraSdk.HostUsage](docs/HostUsage.md)
618
+ - [KestraIoKestraSdk.HostUsageHardware](docs/HostUsageHardware.md)
619
+ - [KestraIoKestraSdk.HostUsageJvm](docs/HostUsageJvm.md)
620
+ - [KestraIoKestraSdk.HostUsageOs](docs/HostUsageOs.md)
621
+ - [KestraIoKestraSdk.HttpParameters](docs/HttpParameters.md)
622
+ - [KestraIoKestraSdk.IAMBindingControllerApiBindingDetail](docs/IAMBindingControllerApiBindingDetail.md)
623
+ - [KestraIoKestraSdk.IAMBindingControllerApiBindingGroup](docs/IAMBindingControllerApiBindingGroup.md)
624
+ - [KestraIoKestraSdk.IAMBindingControllerApiBindingUser](docs/IAMBindingControllerApiBindingUser.md)
625
+ - [KestraIoKestraSdk.IAMBindingControllerApiCreateBindingRequest](docs/IAMBindingControllerApiCreateBindingRequest.md)
626
+ - [KestraIoKestraSdk.IAMBindingControllerApiRole](docs/IAMBindingControllerApiRole.md)
627
+ - [KestraIoKestraSdk.IAMGroupControllerApiCreateGroupRequest](docs/IAMGroupControllerApiCreateGroupRequest.md)
628
+ - [KestraIoKestraSdk.IAMGroupControllerApiGroupDetail](docs/IAMGroupControllerApiGroupDetail.md)
629
+ - [KestraIoKestraSdk.IAMGroupControllerApiGroupMember](docs/IAMGroupControllerApiGroupMember.md)
630
+ - [KestraIoKestraSdk.IAMGroupControllerApiGroupMembership](docs/IAMGroupControllerApiGroupMembership.md)
631
+ - [KestraIoKestraSdk.IAMGroupControllerApiUpdateGroupRequest](docs/IAMGroupControllerApiUpdateGroupRequest.md)
632
+ - [KestraIoKestraSdk.IAMInvitationControllerApiInvitationCreateRequest](docs/IAMInvitationControllerApiInvitationCreateRequest.md)
633
+ - [KestraIoKestraSdk.IAMInvitationControllerApiInvitationDetail](docs/IAMInvitationControllerApiInvitationDetail.md)
634
+ - [KestraIoKestraSdk.IAMInvitationControllerApiInvitationRole](docs/IAMInvitationControllerApiInvitationRole.md)
635
+ - [KestraIoKestraSdk.IAMRoleControllerApiRoleCreateOrUpdateRequest](docs/IAMRoleControllerApiRoleCreateOrUpdateRequest.md)
636
+ - [KestraIoKestraSdk.IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions](docs/IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions.md)
637
+ - [KestraIoKestraSdk.IAMRoleControllerApiRoleDetail](docs/IAMRoleControllerApiRoleDetail.md)
638
+ - [KestraIoKestraSdk.IAMServiceAccountControllerApiGroup](docs/IAMServiceAccountControllerApiGroup.md)
639
+ - [KestraIoKestraSdk.IAMServiceAccountControllerApiServiceAccountRequest](docs/IAMServiceAccountControllerApiServiceAccountRequest.md)
640
+ - [KestraIoKestraSdk.IAMServiceAccountControllerApiServiceAccountResponse](docs/IAMServiceAccountControllerApiServiceAccountResponse.md)
641
+ - [KestraIoKestraSdk.IAMTenantAccessControllerApiAuthentication](docs/IAMTenantAccessControllerApiAuthentication.md)
642
+ - [KestraIoKestraSdk.IAMTenantAccessControllerApiCreateTenantAccessRequest](docs/IAMTenantAccessControllerApiCreateTenantAccessRequest.md)
643
+ - [KestraIoKestraSdk.IAMTenantAccessControllerApiGroup](docs/IAMTenantAccessControllerApiGroup.md)
644
+ - [KestraIoKestraSdk.IAMTenantAccessControllerApiRoleAssignment](docs/IAMTenantAccessControllerApiRoleAssignment.md)
645
+ - [KestraIoKestraSdk.IAMTenantAccessControllerApiTenantAccess](docs/IAMTenantAccessControllerApiTenantAccess.md)
646
+ - [KestraIoKestraSdk.IAMTenantAccessControllerApiUserPermission](docs/IAMTenantAccessControllerApiUserPermission.md)
647
+ - [KestraIoKestraSdk.IAMTenantAccessControllerApiUserTenantAccess](docs/IAMTenantAccessControllerApiUserTenantAccess.md)
648
+ - [KestraIoKestraSdk.IAMTenantAccessControllerUserApiAutocomplete](docs/IAMTenantAccessControllerUserApiAutocomplete.md)
649
+ - [KestraIoKestraSdk.IAMUserControllerApiCreateOrUpdateUserRequest](docs/IAMUserControllerApiCreateOrUpdateUserRequest.md)
650
+ - [KestraIoKestraSdk.IAMUserControllerApiGroup](docs/IAMUserControllerApiGroup.md)
651
+ - [KestraIoKestraSdk.IAMUserControllerApiPatchRestrictedRequest](docs/IAMUserControllerApiPatchRestrictedRequest.md)
652
+ - [KestraIoKestraSdk.IAMUserControllerApiPatchSuperAdminRequest](docs/IAMUserControllerApiPatchSuperAdminRequest.md)
653
+ - [KestraIoKestraSdk.IAMUserControllerApiPatchUserPasswordRequest](docs/IAMUserControllerApiPatchUserPasswordRequest.md)
654
+ - [KestraIoKestraSdk.IAMUserControllerApiTenant](docs/IAMUserControllerApiTenant.md)
655
+ - [KestraIoKestraSdk.IAMUserControllerApiUser](docs/IAMUserControllerApiUser.md)
656
+ - [KestraIoKestraSdk.IAMUserControllerApiUserAuth](docs/IAMUserControllerApiUserAuth.md)
657
+ - [KestraIoKestraSdk.IAMUserControllerApiUserSummary](docs/IAMUserControllerApiUserSummary.md)
658
+ - [KestraIoKestraSdk.IAMUserGroupControllerApiUpdateUserGroupsRequest](docs/IAMUserGroupControllerApiUpdateUserGroupsRequest.md)
659
+ - [KestraIoKestraSdk.IdWithNamespace](docs/IdWithNamespace.md)
660
+ - [KestraIoKestraSdk.IdentityProvider](docs/IdentityProvider.md)
661
+ - [KestraIoKestraSdk.InputObject](docs/InputObject.md)
662
+ - [KestraIoKestraSdk.InputType](docs/InputType.md)
663
+ - [KestraIoKestraSdk.InstanceControllerApiActiveService](docs/InstanceControllerApiActiveService.md)
664
+ - [KestraIoKestraSdk.InstanceControllerApiActiveServiceList](docs/InstanceControllerApiActiveServiceList.md)
665
+ - [KestraIoKestraSdk.InstanceControllerApiCreateOrUpdateWorkerGroupRequest](docs/InstanceControllerApiCreateOrUpdateWorkerGroupRequest.md)
666
+ - [KestraIoKestraSdk.InstanceControllerApiPluginArtifact](docs/InstanceControllerApiPluginArtifact.md)
667
+ - [KestraIoKestraSdk.InstanceControllerApiPluginArtifactListPluginArtifact](docs/InstanceControllerApiPluginArtifactListPluginArtifact.md)
668
+ - [KestraIoKestraSdk.InstanceControllerApiPluginArtifactListPluginResolutionResult](docs/InstanceControllerApiPluginArtifactListPluginResolutionResult.md)
669
+ - [KestraIoKestraSdk.InstanceControllerApiPluginListRequest](docs/InstanceControllerApiPluginListRequest.md)
670
+ - [KestraIoKestraSdk.InstanceControllerApiPluginVersionDetails](docs/InstanceControllerApiPluginVersionDetails.md)
671
+ - [KestraIoKestraSdk.InstanceControllerApiPluginVersionDetailsApiPluginClass](docs/InstanceControllerApiPluginVersionDetailsApiPluginClass.md)
672
+ - [KestraIoKestraSdk.InstanceControllerApiPluginVersionDetailsApiPluginClasses](docs/InstanceControllerApiPluginVersionDetailsApiPluginClasses.md)
673
+ - [KestraIoKestraSdk.InstanceControllerApiPluginVersions](docs/InstanceControllerApiPluginVersions.md)
674
+ - [KestraIoKestraSdk.InstanceControllerApiPluginVersionsApiPluginVersionAndMetadata](docs/InstanceControllerApiPluginVersionsApiPluginVersionAndMetadata.md)
675
+ - [KestraIoKestraSdk.InstanceControllerApiServerInstance](docs/InstanceControllerApiServerInstance.md)
676
+ - [KestraIoKestraSdk.InstanceControllerApiServiceInstance](docs/InstanceControllerApiServiceInstance.md)
677
+ - [KestraIoKestraSdk.InstanceControllerApiWorkerGroup](docs/InstanceControllerApiWorkerGroup.md)
678
+ - [KestraIoKestraSdk.InstanceControllerApiWorkerGroupDetails](docs/InstanceControllerApiWorkerGroupDetails.md)
679
+ - [KestraIoKestraSdk.InstanceControllerApiWorkerGroupItem](docs/InstanceControllerApiWorkerGroupItem.md)
680
+ - [KestraIoKestraSdk.InstanceControllerApiWorkerGroupList](docs/InstanceControllerApiWorkerGroupList.md)
681
+ - [KestraIoKestraSdk.Invitation](docs/Invitation.md)
682
+ - [KestraIoKestraSdk.InvitationInvitationStatus](docs/InvitationInvitationStatus.md)
683
+ - [KestraIoKestraSdk.Isolation](docs/Isolation.md)
684
+ - [KestraIoKestraSdk.KVControllerApiDeleteBulkRequest](docs/KVControllerApiDeleteBulkRequest.md)
685
+ - [KestraIoKestraSdk.KVControllerApiDeleteBulkResponse](docs/KVControllerApiDeleteBulkResponse.md)
686
+ - [KestraIoKestraSdk.KVControllerTypedValue](docs/KVControllerTypedValue.md)
687
+ - [KestraIoKestraSdk.KVEntry](docs/KVEntry.md)
688
+ - [KestraIoKestraSdk.KVType](docs/KVType.md)
689
+ - [KestraIoKestraSdk.Label](docs/Label.md)
690
+ - [KestraIoKestraSdk.Level](docs/Level.md)
691
+ - [KestraIoKestraSdk.Listener](docs/Listener.md)
692
+ - [KestraIoKestraSdk.LogEntry](docs/LogEntry.md)
693
+ - [KestraIoKestraSdk.MapObjectObject](docs/MapObjectObject.md)
694
+ - [KestraIoKestraSdk.MeControllerApiMe](docs/MeControllerApiMe.md)
695
+ - [KestraIoKestraSdk.MeControllerApiProfile](docs/MeControllerApiProfile.md)
696
+ - [KestraIoKestraSdk.MeControllerApiTenant](docs/MeControllerApiTenant.md)
697
+ - [KestraIoKestraSdk.MeControllerApiUpdatePasswordRequest](docs/MeControllerApiUpdatePasswordRequest.md)
698
+ - [KestraIoKestraSdk.MeControllerApiUserDetailsRequest](docs/MeControllerApiUserDetailsRequest.md)
699
+ - [KestraIoKestraSdk.Meta](docs/Meta.md)
700
+ - [KestraIoKestraSdk.Metric](docs/Metric.md)
701
+ - [KestraIoKestraSdk.MetricAggregation](docs/MetricAggregation.md)
702
+ - [KestraIoKestraSdk.MetricAggregations](docs/MetricAggregations.md)
703
+ - [KestraIoKestraSdk.MetricEntry](docs/MetricEntry.md)
704
+ - [KestraIoKestraSdk.MetricTag](docs/MetricTag.md)
705
+ - [KestraIoKestraSdk.MiscControllerBasicAuthCredentials](docs/MiscControllerBasicAuthCredentials.md)
706
+ - [KestraIoKestraSdk.MiscControllerConfiguration](docs/MiscControllerConfiguration.md)
707
+ - [KestraIoKestraSdk.MiscControllerEEConfiguration](docs/MiscControllerEEConfiguration.md)
708
+ - [KestraIoKestraSdk.MiscControllerEnvironment](docs/MiscControllerEnvironment.md)
709
+ - [KestraIoKestraSdk.MiscControllerLicenseInfo](docs/MiscControllerLicenseInfo.md)
710
+ - [KestraIoKestraSdk.MiscControllerPluginIdAndVersion](docs/MiscControllerPluginIdAndVersion.md)
711
+ - [KestraIoKestraSdk.MiscControllerPreview](docs/MiscControllerPreview.md)
712
+ - [KestraIoKestraSdk.MiscControllerTenantConfigurationInfo](docs/MiscControllerTenantConfigurationInfo.md)
713
+ - [KestraIoKestraSdk.Name](docs/Name.md)
714
+ - [KestraIoKestraSdk.Namespace](docs/Namespace.md)
715
+ - [KestraIoKestraSdk.NamespaceAllowedNamespace](docs/NamespaceAllowedNamespace.md)
716
+ - [KestraIoKestraSdk.NamespaceAllowedTrigger](docs/NamespaceAllowedTrigger.md)
717
+ - [KestraIoKestraSdk.NamespaceLight](docs/NamespaceLight.md)
718
+ - [KestraIoKestraSdk.NamespaceUsage](docs/NamespaceUsage.md)
719
+ - [KestraIoKestraSdk.NamespaceWithDisabled](docs/NamespaceWithDisabled.md)
720
+ - [KestraIoKestraSdk.Output](docs/Output.md)
721
+ - [KestraIoKestraSdk.PageRequest](docs/PageRequest.md)
722
+ - [KestraIoKestraSdk.PagedResultsApiGroupSummary](docs/PagedResultsApiGroupSummary.md)
723
+ - [KestraIoKestraSdk.PagedResultsApiRoleSummary](docs/PagedResultsApiRoleSummary.md)
724
+ - [KestraIoKestraSdk.PagedResultsAppsControllerApiApp](docs/PagedResultsAppsControllerApiApp.md)
725
+ - [KestraIoKestraSdk.PagedResultsAppsControllerApiAppCatalogItem](docs/PagedResultsAppsControllerApiAppCatalogItem.md)
726
+ - [KestraIoKestraSdk.PagedResultsAuditLogControllerAuditLogWithUser](docs/PagedResultsAuditLogControllerAuditLogWithUser.md)
727
+ - [KestraIoKestraSdk.PagedResultsBlueprint](docs/PagedResultsBlueprint.md)
728
+ - [KestraIoKestraSdk.PagedResultsBlueprintControllerApiBlueprintItem](docs/PagedResultsBlueprintControllerApiBlueprintItem.md)
729
+ - [KestraIoKestraSdk.PagedResultsDashboard](docs/PagedResultsDashboard.md)
730
+ - [KestraIoKestraSdk.PagedResultsExecution](docs/PagedResultsExecution.md)
731
+ - [KestraIoKestraSdk.PagedResultsFlow](docs/PagedResultsFlow.md)
732
+ - [KestraIoKestraSdk.PagedResultsIAMBindingControllerApiBindingDetail](docs/PagedResultsIAMBindingControllerApiBindingDetail.md)
733
+ - [KestraIoKestraSdk.PagedResultsIAMGroupControllerApiGroupMember](docs/PagedResultsIAMGroupControllerApiGroupMember.md)
734
+ - [KestraIoKestraSdk.PagedResultsIAMInvitationControllerApiInvitationDetail](docs/PagedResultsIAMInvitationControllerApiInvitationDetail.md)
735
+ - [KestraIoKestraSdk.PagedResultsIAMTenantAccessControllerApiUserTenantAccess](docs/PagedResultsIAMTenantAccessControllerApiUserTenantAccess.md)
736
+ - [KestraIoKestraSdk.PagedResultsIAMUserControllerApiUserSummary](docs/PagedResultsIAMUserControllerApiUserSummary.md)
737
+ - [KestraIoKestraSdk.PagedResultsInstanceControllerApiPluginArtifact](docs/PagedResultsInstanceControllerApiPluginArtifact.md)
738
+ - [KestraIoKestraSdk.PagedResultsInstanceControllerApiServiceInstance](docs/PagedResultsInstanceControllerApiServiceInstance.md)
739
+ - [KestraIoKestraSdk.PagedResultsLogEntry](docs/PagedResultsLogEntry.md)
740
+ - [KestraIoKestraSdk.PagedResultsMapStringObject](docs/PagedResultsMapStringObject.md)
741
+ - [KestraIoKestraSdk.PagedResultsMetricEntry](docs/PagedResultsMetricEntry.md)
742
+ - [KestraIoKestraSdk.PagedResultsNamespaceWithDisabled](docs/PagedResultsNamespaceWithDisabled.md)
743
+ - [KestraIoKestraSdk.PagedResultsSearchResultFlow](docs/PagedResultsSearchResultFlow.md)
744
+ - [KestraIoKestraSdk.PagedResultsTaskRun](docs/PagedResultsTaskRun.md)
745
+ - [KestraIoKestraSdk.PagedResultsTenant](docs/PagedResultsTenant.md)
746
+ - [KestraIoKestraSdk.PagedResultsTestSuite](docs/PagedResultsTestSuite.md)
747
+ - [KestraIoKestraSdk.PagedResultsTrigger](docs/PagedResultsTrigger.md)
748
+ - [KestraIoKestraSdk.PagedResultsTriggerControllerTriggers](docs/PagedResultsTriggerControllerTriggers.md)
749
+ - [KestraIoKestraSdk.PatchOperation](docs/PatchOperation.md)
750
+ - [KestraIoKestraSdk.PatchOperationPath](docs/PatchOperationPath.md)
751
+ - [KestraIoKestraSdk.PatchOperationType](docs/PatchOperationType.md)
752
+ - [KestraIoKestraSdk.PatchRequest](docs/PatchRequest.md)
753
+ - [KestraIoKestraSdk.Permission](docs/Permission.md)
754
+ - [KestraIoKestraSdk.Plugin](docs/Plugin.md)
755
+ - [KestraIoKestraSdk.PluginArtifact](docs/PluginArtifact.md)
756
+ - [KestraIoKestraSdk.PluginArtifactMetadata](docs/PluginArtifactMetadata.md)
757
+ - [KestraIoKestraSdk.PluginControllerApiPluginVersions](docs/PluginControllerApiPluginVersions.md)
758
+ - [KestraIoKestraSdk.PluginDefault](docs/PluginDefault.md)
759
+ - [KestraIoKestraSdk.PluginIcon](docs/PluginIcon.md)
760
+ - [KestraIoKestraSdk.PluginMetric](docs/PluginMetric.md)
761
+ - [KestraIoKestraSdk.PluginPluginElementMetadata](docs/PluginPluginElementMetadata.md)
762
+ - [KestraIoKestraSdk.PluginSchema](docs/PluginSchema.md)
763
+ - [KestraIoKestraSdk.PluginSubGroupPluginCategory](docs/PluginSubGroupPluginCategory.md)
764
+ - [KestraIoKestraSdk.PluginUsage](docs/PluginUsage.md)
765
+ - [KestraIoKestraSdk.PreviewAppRequest](docs/PreviewAppRequest.md)
766
+ - [KestraIoKestraSdk.PropertyBoolean](docs/PropertyBoolean.md)
767
+ - [KestraIoKestraSdk.PropertyDouble](docs/PropertyDouble.md)
768
+ - [KestraIoKestraSdk.PropertyDuration](docs/PropertyDuration.md)
769
+ - [KestraIoKestraSdk.PropertyListString](docs/PropertyListString.md)
770
+ - [KestraIoKestraSdk.PropertyObject](docs/PropertyObject.md)
771
+ - [KestraIoKestraSdk.PropertyString](docs/PropertyString.md)
772
+ - [KestraIoKestraSdk.QueryFilter](docs/QueryFilter.md)
773
+ - [KestraIoKestraSdk.QueryFilterField](docs/QueryFilterField.md)
774
+ - [KestraIoKestraSdk.QueryFilterFieldOp](docs/QueryFilterFieldOp.md)
775
+ - [KestraIoKestraSdk.QueryFilterOp](docs/QueryFilterOp.md)
776
+ - [KestraIoKestraSdk.QueryFilterOperation](docs/QueryFilterOperation.md)
777
+ - [KestraIoKestraSdk.QueryFilterResourceField](docs/QueryFilterResourceField.md)
778
+ - [KestraIoKestraSdk.RBACServiceRoleAssignmentRoleOrigin](docs/RBACServiceRoleAssignmentRoleOrigin.md)
779
+ - [KestraIoKestraSdk.Relation](docs/Relation.md)
780
+ - [KestraIoKestraSdk.RelationType](docs/RelationType.md)
781
+ - [KestraIoKestraSdk.ResourceType](docs/ResourceType.md)
782
+ - [KestraIoKestraSdk.ResourceTypeSchemaExtensionConfiguration](docs/ResourceTypeSchemaExtensionConfiguration.md)
783
+ - [KestraIoKestraSdk.Role](docs/Role.md)
784
+ - [KestraIoKestraSdk.RoleUsage](docs/RoleUsage.md)
785
+ - [KestraIoKestraSdk.SLA](docs/SLA.md)
786
+ - [KestraIoKestraSdk.SLABehavior](docs/SLABehavior.md)
787
+ - [KestraIoKestraSdk.SLAType](docs/SLAType.md)
788
+ - [KestraIoKestraSdk.Schema](docs/Schema.md)
789
+ - [KestraIoKestraSdk.SchemaAttribute](docs/SchemaAttribute.md)
790
+ - [KestraIoKestraSdk.SchemaAttributeMutability](docs/SchemaAttributeMutability.md)
791
+ - [KestraIoKestraSdk.SchemaAttributeReturned](docs/SchemaAttributeReturned.md)
792
+ - [KestraIoKestraSdk.SchemaAttributeType](docs/SchemaAttributeType.md)
793
+ - [KestraIoKestraSdk.SchemaAttributeUniqueness](docs/SchemaAttributeUniqueness.md)
794
+ - [KestraIoKestraSdk.SchemaType](docs/SchemaType.md)
795
+ - [KestraIoKestraSdk.ScimExtension](docs/ScimExtension.md)
796
+ - [KestraIoKestraSdk.ScimResource](docs/ScimResource.md)
797
+ - [KestraIoKestraSdk.ScimResourceWithOptionalId](docs/ScimResourceWithOptionalId.md)
798
+ - [KestraIoKestraSdk.ScimUser](docs/ScimUser.md)
799
+ - [KestraIoKestraSdk.SearchRequest](docs/SearchRequest.md)
800
+ - [KestraIoKestraSdk.SearchResultFlow](docs/SearchResultFlow.md)
801
+ - [KestraIoKestraSdk.SecurityIntegrationType](docs/SecurityIntegrationType.md)
802
+ - [KestraIoKestraSdk.ServerConfig](docs/ServerConfig.md)
803
+ - [KestraIoKestraSdk.ServerConfigLiveness](docs/ServerConfigLiveness.md)
804
+ - [KestraIoKestraSdk.ServerInstance](docs/ServerInstance.md)
805
+ - [KestraIoKestraSdk.ServerInstanceType](docs/ServerInstanceType.md)
806
+ - [KestraIoKestraSdk.ServerType](docs/ServerType.md)
807
+ - [KestraIoKestraSdk.ServiceInstance](docs/ServiceInstance.md)
808
+ - [KestraIoKestraSdk.ServiceInstanceTimestampedEvent](docs/ServiceInstanceTimestampedEvent.md)
809
+ - [KestraIoKestraSdk.ServiceProviderConfiguration](docs/ServiceProviderConfiguration.md)
810
+ - [KestraIoKestraSdk.ServiceProviderConfigurationAuthenticationSchema](docs/ServiceProviderConfigurationAuthenticationSchema.md)
811
+ - [KestraIoKestraSdk.ServiceProviderConfigurationAuthenticationSchemaType](docs/ServiceProviderConfigurationAuthenticationSchemaType.md)
812
+ - [KestraIoKestraSdk.ServiceProviderConfigurationBulkConfiguration](docs/ServiceProviderConfigurationBulkConfiguration.md)
813
+ - [KestraIoKestraSdk.ServiceProviderConfigurationFilterConfiguration](docs/ServiceProviderConfigurationFilterConfiguration.md)
814
+ - [KestraIoKestraSdk.ServiceProviderConfigurationSupportedConfiguration](docs/ServiceProviderConfigurationSupportedConfiguration.md)
815
+ - [KestraIoKestraSdk.ServiceServiceState](docs/ServiceServiceState.md)
816
+ - [KestraIoKestraSdk.ServiceType](docs/ServiceType.md)
817
+ - [KestraIoKestraSdk.ServiceUsage](docs/ServiceUsage.md)
818
+ - [KestraIoKestraSdk.ServiceUsageDailyServiceStatistics](docs/ServiceUsageDailyServiceStatistics.md)
819
+ - [KestraIoKestraSdk.ServiceUsageDailyStatistics](docs/ServiceUsageDailyStatistics.md)
820
+ - [KestraIoKestraSdk.SetupConfiguration](docs/SetupConfiguration.md)
821
+ - [KestraIoKestraSdk.SetupConfigurationSetupData](docs/SetupConfigurationSetupData.md)
822
+ - [KestraIoKestraSdk.SortOrder](docs/SortOrder.md)
823
+ - [KestraIoKestraSdk.SortRequest](docs/SortRequest.md)
824
+ - [KestraIoKestraSdk.State](docs/State.md)
825
+ - [KestraIoKestraSdk.StateHistory](docs/StateHistory.md)
826
+ - [KestraIoKestraSdk.StateType](docs/StateType.md)
827
+ - [KestraIoKestraSdk.Task](docs/Task.md)
828
+ - [KestraIoKestraSdk.TaskFixture](docs/TaskFixture.md)
829
+ - [KestraIoKestraSdk.TaskForExecution](docs/TaskForExecution.md)
830
+ - [KestraIoKestraSdk.TaskRun](docs/TaskRun.md)
831
+ - [KestraIoKestraSdk.TaskRunAttempt](docs/TaskRunAttempt.md)
832
+ - [KestraIoKestraSdk.Tenant](docs/Tenant.md)
833
+ - [KestraIoKestraSdk.TenantInterface](docs/TenantInterface.md)
834
+ - [KestraIoKestraSdk.TenantUsage](docs/TenantUsage.md)
835
+ - [KestraIoKestraSdk.TestState](docs/TestState.md)
836
+ - [KestraIoKestraSdk.TestSuite](docs/TestSuite.md)
837
+ - [KestraIoKestraSdk.TestSuiteControllerSearchTestsLastResult](docs/TestSuiteControllerSearchTestsLastResult.md)
838
+ - [KestraIoKestraSdk.TestSuiteControllerTestSuiteApiId](docs/TestSuiteControllerTestSuiteApiId.md)
839
+ - [KestraIoKestraSdk.TestSuiteControllerTestSuiteBulkRequest](docs/TestSuiteControllerTestSuiteBulkRequest.md)
840
+ - [KestraIoKestraSdk.TestSuiteControllerTestsLastResultResponse](docs/TestSuiteControllerTestsLastResultResponse.md)
841
+ - [KestraIoKestraSdk.TestSuiteRunResult](docs/TestSuiteRunResult.md)
842
+ - [KestraIoKestraSdk.TheLabelsToPassToTheExecutionCreated](docs/TheLabelsToPassToTheExecutionCreated.md)
843
+ - [KestraIoKestraSdk.TimeWindow](docs/TimeWindow.md)
844
+ - [KestraIoKestraSdk.Trigger](docs/Trigger.md)
845
+ - [KestraIoKestraSdk.TriggerContext](docs/TriggerContext.md)
846
+ - [KestraIoKestraSdk.TriggerControllerSetDisabledRequest](docs/TriggerControllerSetDisabledRequest.md)
847
+ - [KestraIoKestraSdk.TriggerControllerTriggers](docs/TriggerControllerTriggers.md)
848
+ - [KestraIoKestraSdk.TriggerFixture](docs/TriggerFixture.md)
849
+ - [KestraIoKestraSdk.Type](docs/Type.md)
850
+ - [KestraIoKestraSdk.UnitTest](docs/UnitTest.md)
851
+ - [KestraIoKestraSdk.UnitTestResult](docs/UnitTestResult.md)
852
+ - [KestraIoKestraSdk.UpdateFlow200Response](docs/UpdateFlow200Response.md)
853
+ - [KestraIoKestraSdk.UpdateFlowsInNamespaceFromJson200Response](docs/UpdateFlowsInNamespaceFromJson200Response.md)
854
+ - [KestraIoKestraSdk.Usage](docs/Usage.md)
855
+ - [KestraIoKestraSdk.UsageEE](docs/UsageEE.md)
856
+ - [KestraIoKestraSdk.UserGroup](docs/UserGroup.md)
857
+ - [KestraIoKestraSdk.UserGroupType](docs/UserGroupType.md)
858
+ - [KestraIoKestraSdk.UserType](docs/UserType.md)
859
+ - [KestraIoKestraSdk.UserUsage](docs/UserUsage.md)
860
+ - [KestraIoKestraSdk.UsernamePasswordCredentials](docs/UsernamePasswordCredentials.md)
861
+ - [KestraIoKestraSdk.ValidateConstraintViolation](docs/ValidateConstraintViolation.md)
862
+ - [KestraIoKestraSdk.ValuePathExpression](docs/ValuePathExpression.md)
863
+ - [KestraIoKestraSdk.WorkerGroup](docs/WorkerGroup.md)
864
+ - [KestraIoKestraSdk.WorkerGroupFallback](docs/WorkerGroupFallback.md)
865
+ - [KestraIoKestraSdk.WorkerTaskRestartStrategy](docs/WorkerTaskRestartStrategy.md)
866
+
867
+
868
+ ## Documentation for Authorization
869
+
870
+
871
+ Authentication schemes defined for the API:
872
+ ### basicAuth
873
+
874
+ - **Type**: HTTP basic authentication
875
+
876
+ ### bearerAuth
877
+
878
+ - **Type**: Bearer authentication (Bearer)
879
+