# @kestra-io/kestra-sdk

KestraIoKestraSdk - JavaScript client for @kestra-io/kestra-sdk
All API operations, except for Superadmin-only endpoints, require a tenant identifier in the HTTP path.<br/>
Endpoints designated as Superadmin-only are not tenant-scoped.
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.3.14
- Package version: 1.3.0
- Generator version: 7.22.0
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen

## Installation

### For [Node.js](https://nodejs.org/)

#### npm

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).

Then install it via:

```shell
npm install @kestra-io/kestra-sdk --save
```

Finally, you need to build the module:

```shell
npm run build
```

##### Local development

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:

```shell
npm install
```

Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:

```shell
npm link
```

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:

```shell
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>
```

Finally, you need to build the module:

```shell
npm run build
```

#### git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID
then install it via:

```shell
    npm install GIT_USER_ID/GIT_REPO_ID --save
```

### For browser

The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
the above steps with Node.js and installing browserify with `npm install -g browserify`,
perform the following (assuming *main.js* is your entry file):

```shell
browserify main.js > bundle.js
```

Then include *bundle.js* in the HTML pages.

### Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error:
Cannot resolve module", most certainly you should disable AMD loader. Add/merge
the following section to your webpack config:

```javascript
module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}
```

## Getting Started

Please follow the [installation](#installation) instruction and execute the following JS code:

```javascript
var KestraIoKestraSdk = require('@kestra-io/kestra-sdk');

var defaultClient = KestraIoKestraSdk.ApiClient.instance;
// Configure HTTP basic authorization: basicAuth
var basicAuth = defaultClient.authentications['basicAuth'];
basicAuth.username = 'YOUR USERNAME'
basicAuth.password = 'YOUR PASSWORD'
// Configure Bearer (Bearer) access token for authorization: bearerAuth
var bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"

var api = new KestraIoKestraSdk.ExecutionsApi()
var namespace = "namespace_example"; // {String} The flow namespace
var id = "id_example"; // {String} The flow id
var tenant = "tenant_example"; // {String} 
var opts = {
  'labels': ["null"], // {[String]} The labels as a list of 'key:value'
  'wait': false, // {Boolean} If the server will wait the end of the execution
  'revision': 56, // {Number} The flow revision or latest if null
  'scheduleDate': new Date("2013-10-20T19:20:30+01:00"), // {Date} Schedule the flow on a specific date
  'breakpoints': "breakpoints_example", // {String} Set a list of breakpoints at specific tasks 'id.value', separated by a coma.
  'kind': new KestraIoKestraSdk.ExecutionKind() // {ExecutionKind} Specific execution kind
};
api.createExecution(namespace, id, tenant, opts).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});


```

## Documentation for API Endpoints

All URIs are relative to *http://localhost*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*KestraIoKestraSdk.ExecutionsApi* | [**createExecution**](docs/ExecutionsApi.md#createExecution) | **POST** /api/v1/{tenant}/executions/{namespace}/{id} | Create a new execution for a flow
*KestraIoKestraSdk.ExecutionsApi* | [**deleteExecution**](docs/ExecutionsApi.md#deleteExecution) | **DELETE** /api/v1/{tenant}/executions/{executionId} | Delete an execution
*KestraIoKestraSdk.ExecutionsApi* | [**deleteExecutionsByIds**](docs/ExecutionsApi.md#deleteExecutionsByIds) | **DELETE** /api/v1/{tenant}/executions/by-ids | Delete a list of executions
*KestraIoKestraSdk.ExecutionsApi* | [**deleteExecutionsByQuery**](docs/ExecutionsApi.md#deleteExecutionsByQuery) | **DELETE** /api/v1/{tenant}/executions/by-query | Delete executions filter by query parameters
*KestraIoKestraSdk.ExecutionsApi* | [**downloadFileFromExecution**](docs/ExecutionsApi.md#downloadFileFromExecution) | **GET** /api/v1/{tenant}/executions/{executionId}/file | Download file for an execution
*KestraIoKestraSdk.ExecutionsApi* | [**evalExpression**](docs/ExecutionsApi.md#evalExpression) | **POST** /api/v1/{tenant}/executions/{executionId}/eval | Evaluate a variable expression for this execution
*KestraIoKestraSdk.ExecutionsApi* | [**execution**](docs/ExecutionsApi.md#execution) | **GET** /api/v1/{tenant}/executions/{executionId} | Get an execution
*KestraIoKestraSdk.ExecutionsApi* | [**executionFlowGraph**](docs/ExecutionsApi.md#executionFlowGraph) | **GET** /api/v1/{tenant}/executions/{executionId}/graph | Generate a graph for an execution
*KestraIoKestraSdk.ExecutionsApi* | [**fileMetadatasFromExecution**](docs/ExecutionsApi.md#fileMetadatasFromExecution) | **GET** /api/v1/{tenant}/executions/{executionId}/file/metas | Get file meta information for an execution
*KestraIoKestraSdk.ExecutionsApi* | [**flowFromExecution**](docs/ExecutionsApi.md#flowFromExecution) | **GET** /api/v1/{tenant}/executions/flows/{namespace}/{flowId} | Get flow information&#39;s for an execution
*KestraIoKestraSdk.ExecutionsApi* | [**flowFromExecutionById**](docs/ExecutionsApi.md#flowFromExecutionById) | **GET** /api/v1/{tenant}/executions/{executionId}/flow | Get flow information&#39;s for an execution
*KestraIoKestraSdk.ExecutionsApi* | [**followDependenciesExecutions**](docs/ExecutionsApi.md#followDependenciesExecutions) | **GET** /api/v1/{tenant}/executions/{executionId}/follow-dependencies | Follow all execution dependencies executions
*KestraIoKestraSdk.ExecutionsApi* | [**followExecution**](docs/ExecutionsApi.md#followExecution) | **GET** /api/v1/{tenant}/executions/{executionId}/follow | Follow an execution
*KestraIoKestraSdk.ExecutionsApi* | [**forceRunByIds**](docs/ExecutionsApi.md#forceRunByIds) | **POST** /api/v1/{tenant}/executions/force-run/by-ids | Force run a list of executions
*KestraIoKestraSdk.ExecutionsApi* | [**forceRunExecution**](docs/ExecutionsApi.md#forceRunExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/force-run | Force run an execution
*KestraIoKestraSdk.ExecutionsApi* | [**forceRunExecutionsByQuery**](docs/ExecutionsApi.md#forceRunExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/force-run/by-query | Force run executions filter by query parameters
*KestraIoKestraSdk.ExecutionsApi* | [**killExecution**](docs/ExecutionsApi.md#killExecution) | **DELETE** /api/v1/{tenant}/executions/{executionId}/kill | Kill an execution
*KestraIoKestraSdk.ExecutionsApi* | [**killExecutionsByIds**](docs/ExecutionsApi.md#killExecutionsByIds) | **DELETE** /api/v1/{tenant}/executions/kill/by-ids | Kill a list of executions
*KestraIoKestraSdk.ExecutionsApi* | [**killExecutionsByQuery**](docs/ExecutionsApi.md#killExecutionsByQuery) | **DELETE** /api/v1/{tenant}/executions/kill/by-query | Kill executions filter by query parameters
*KestraIoKestraSdk.ExecutionsApi* | [**latestExecutions**](docs/ExecutionsApi.md#latestExecutions) | **POST** /api/v1/{tenant}/executions/latest | Get the latest execution for given flows
*KestraIoKestraSdk.ExecutionsApi* | [**pauseExecution**](docs/ExecutionsApi.md#pauseExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/pause | Pause a running execution.
*KestraIoKestraSdk.ExecutionsApi* | [**pauseExecutionsByIds**](docs/ExecutionsApi.md#pauseExecutionsByIds) | **POST** /api/v1/{tenant}/executions/pause/by-ids | Pause a list of running executions
*KestraIoKestraSdk.ExecutionsApi* | [**pauseExecutionsByQuery**](docs/ExecutionsApi.md#pauseExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/pause/by-query | Pause executions filter by query parameters
*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
*KestraIoKestraSdk.ExecutionsApi* | [**replayExecutionWithinputs**](docs/ExecutionsApi.md#replayExecutionWithinputs) | **POST** /api/v1/{tenant}/executions/{executionId}/replay-with-inputs | Create a new execution from an old one and start it from a specified task run id
*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
*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
*KestraIoKestraSdk.ExecutionsApi* | [**restartExecution**](docs/ExecutionsApi.md#restartExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/restart | Restart a new execution from an old one
*KestraIoKestraSdk.ExecutionsApi* | [**restartExecutionsByIds**](docs/ExecutionsApi.md#restartExecutionsByIds) | **POST** /api/v1/{tenant}/executions/restart/by-ids | Restart a list of executions
*KestraIoKestraSdk.ExecutionsApi* | [**restartExecutionsByQuery**](docs/ExecutionsApi.md#restartExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/restart/by-query | Restart executions filter by query parameters
*KestraIoKestraSdk.ExecutionsApi* | [**resumeExecution**](docs/ExecutionsApi.md#resumeExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/resume | Resume a paused execution.
*KestraIoKestraSdk.ExecutionsApi* | [**resumeExecutionsByIds**](docs/ExecutionsApi.md#resumeExecutionsByIds) | **POST** /api/v1/{tenant}/executions/resume/by-ids | Resume a list of paused executions
*KestraIoKestraSdk.ExecutionsApi* | [**resumeExecutionsByQuery**](docs/ExecutionsApi.md#resumeExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/resume/by-query | Resume executions filter by query parameters
*KestraIoKestraSdk.ExecutionsApi* | [**searchExecutions**](docs/ExecutionsApi.md#searchExecutions) | **GET** /api/v1/{tenant}/executions/search | Search for executions
*KestraIoKestraSdk.ExecutionsApi* | [**searchExecutionsByFlowId**](docs/ExecutionsApi.md#searchExecutionsByFlowId) | **GET** /api/v1/{tenant}/executions | Search for executions for a flow
*KestraIoKestraSdk.ExecutionsApi* | [**setLabelsOnTerminatedExecution**](docs/ExecutionsApi.md#setLabelsOnTerminatedExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/labels | Add or update labels of a terminated execution
*KestraIoKestraSdk.ExecutionsApi* | [**setLabelsOnTerminatedExecutionsByIds**](docs/ExecutionsApi.md#setLabelsOnTerminatedExecutionsByIds) | **POST** /api/v1/{tenant}/executions/labels/by-ids | Set labels on a list of executions
*KestraIoKestraSdk.ExecutionsApi* | [**setLabelsOnTerminatedExecutionsByQuery**](docs/ExecutionsApi.md#setLabelsOnTerminatedExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/labels/by-query | Set label on executions filter by query parameters
*KestraIoKestraSdk.ExecutionsApi* | [**triggerExecutionByGetWebhook**](docs/ExecutionsApi.md#triggerExecutionByGetWebhook) | **GET** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key} | Trigger a new execution by GET webhook trigger
*KestraIoKestraSdk.ExecutionsApi* | [**triggerExecutionByGetWebhookWithPath**](docs/ExecutionsApi.md#triggerExecutionByGetWebhookWithPath) | **GET** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key}/{path} | Trigger a new execution by GET webhook trigger
*KestraIoKestraSdk.ExecutionsApi* | [**triggerExecutionByPostWebhookWithPath**](docs/ExecutionsApi.md#triggerExecutionByPostWebhookWithPath) | **POST** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key}/{path} | Trigger a new execution by POST webhook trigger
*KestraIoKestraSdk.ExecutionsApi* | [**triggerExecutionByPutWebhookWithPath**](docs/ExecutionsApi.md#triggerExecutionByPutWebhookWithPath) | **PUT** /api/v1/{tenant}/executions/webhook/{namespace}/{id}/{key}/{path} | Trigger a new execution by PUT webhook trigger
*KestraIoKestraSdk.ExecutionsApi* | [**unqueueExecution**](docs/ExecutionsApi.md#unqueueExecution) | **POST** /api/v1/{tenant}/executions/{executionId}/unqueue | Unqueue an execution
*KestraIoKestraSdk.ExecutionsApi* | [**unqueueExecutionsByIds**](docs/ExecutionsApi.md#unqueueExecutionsByIds) | **POST** /api/v1/{tenant}/executions/unqueue/by-ids | Unqueue a list of executions
*KestraIoKestraSdk.ExecutionsApi* | [**unqueueExecutionsByQuery**](docs/ExecutionsApi.md#unqueueExecutionsByQuery) | **POST** /api/v1/{tenant}/executions/unqueue/by-query | Unqueue executions filter by query parameters
*KestraIoKestraSdk.ExecutionsApi* | [**updateExecutionStatus**](docs/ExecutionsApi.md#updateExecutionStatus) | **POST** /api/v1/{tenant}/executions/{executionId}/change-status | Change the state of an execution
*KestraIoKestraSdk.ExecutionsApi* | [**updateExecutionsStatusByIds**](docs/ExecutionsApi.md#updateExecutionsStatusByIds) | **POST** /api/v1/{tenant}/executions/change-status/by-ids | Change executions state by id
*KestraIoKestraSdk.ExecutionsApi* | [**updateExecutionsStatusByQuery**](docs/ExecutionsApi.md#updateExecutionsStatusByQuery) | **POST** /api/v1/{tenant}/executions/change-status/by-query | Change executions state by query parameters
*KestraIoKestraSdk.ExecutionsApi* | [**updateTaskRunState**](docs/ExecutionsApi.md#updateTaskRunState) | **POST** /api/v1/{tenant}/executions/{executionId}/state | Change state for a taskrun in an execution
*KestraIoKestraSdk.FlowsApi* | [**bulkUpdateFlows**](docs/FlowsApi.md#bulkUpdateFlows) | **POST** /api/v1/{tenant}/flows/bulk | Update from multiples yaml sources
*KestraIoKestraSdk.FlowsApi* | [**createFlow**](docs/FlowsApi.md#createFlow) | **POST** /api/v1/{tenant}/flows | Create a flow from yaml source
*KestraIoKestraSdk.FlowsApi* | [**deleteFlow**](docs/FlowsApi.md#deleteFlow) | **DELETE** /api/v1/{tenant}/flows/{namespace}/{id} | Delete a flow
*KestraIoKestraSdk.FlowsApi* | [**deleteFlowsByIds**](docs/FlowsApi.md#deleteFlowsByIds) | **DELETE** /api/v1/{tenant}/flows/delete/by-ids | Delete flows by their IDs.
*KestraIoKestraSdk.FlowsApi* | [**deleteFlowsByQuery**](docs/FlowsApi.md#deleteFlowsByQuery) | **DELETE** /api/v1/{tenant}/flows/delete/by-query | Delete flows returned by the query parameters.
*KestraIoKestraSdk.FlowsApi* | [**deleteRevisions**](docs/FlowsApi.md#deleteRevisions) | **DELETE** /api/v1/{tenant}/flows/{namespace}/{id}/revisions | Delete revisions for a flow
*KestraIoKestraSdk.FlowsApi* | [**disableFlowsByIds**](docs/FlowsApi.md#disableFlowsByIds) | **POST** /api/v1/{tenant}/flows/disable/by-ids | Disable flows by their IDs.
*KestraIoKestraSdk.FlowsApi* | [**disableFlowsByQuery**](docs/FlowsApi.md#disableFlowsByQuery) | **POST** /api/v1/{tenant}/flows/disable/by-query | Disable flows returned by the query parameters.
*KestraIoKestraSdk.FlowsApi* | [**enableFlowsByIds**](docs/FlowsApi.md#enableFlowsByIds) | **POST** /api/v1/{tenant}/flows/enable/by-ids | Enable flows by their IDs.
*KestraIoKestraSdk.FlowsApi* | [**enableFlowsByQuery**](docs/FlowsApi.md#enableFlowsByQuery) | **POST** /api/v1/{tenant}/flows/enable/by-query | Enable flows returned by the query parameters.
*KestraIoKestraSdk.FlowsApi* | [**exportFlowsByIds**](docs/FlowsApi.md#exportFlowsByIds) | **POST** /api/v1/{tenant}/flows/export/by-ids | Export flows as a ZIP archive of yaml sources.
*KestraIoKestraSdk.FlowsApi* | [**exportFlowsByQuery**](docs/FlowsApi.md#exportFlowsByQuery) | **GET** /api/v1/{tenant}/flows/export/by-query | Export flows as a ZIP archive of yaml sources.
*KestraIoKestraSdk.FlowsApi* | [**flow**](docs/FlowsApi.md#flow) | **GET** /api/v1/{tenant}/flows/{namespace}/{id} | Get a flow
*KestraIoKestraSdk.FlowsApi* | [**flowDependencies**](docs/FlowsApi.md#flowDependencies) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/dependencies | Get flow dependencies
*KestraIoKestraSdk.FlowsApi* | [**flowDependenciesFromNamespace**](docs/FlowsApi.md#flowDependenciesFromNamespace) | **GET** /api/v1/{tenant}/namespaces/{namespace}/dependencies | Retrieve flow dependencies
*KestraIoKestraSdk.FlowsApi* | [**generateFlowGraph**](docs/FlowsApi.md#generateFlowGraph) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/graph | Generate a graph for a flow
*KestraIoKestraSdk.FlowsApi* | [**generateFlowGraphFromSource**](docs/FlowsApi.md#generateFlowGraphFromSource) | **POST** /api/v1/{tenant}/flows/graph | Generate a graph for a flow source
*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. 
*KestraIoKestraSdk.FlowsApi* | [**listDeprecated**](docs/FlowsApi.md#listDeprecated) | **GET** /api/v1/{tenant}/flows/deprecated | List flows containing deprecated tasks
*KestraIoKestraSdk.FlowsApi* | [**listDistinctNamespaces**](docs/FlowsApi.md#listDistinctNamespaces) | **GET** /api/v1/{tenant}/flows/distinct-namespaces | List all distinct namespaces
*KestraIoKestraSdk.FlowsApi* | [**listFlowRevisions**](docs/FlowsApi.md#listFlowRevisions) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/revisions | Get revisions for a flow
*KestraIoKestraSdk.FlowsApi* | [**listFlowsByNamespace**](docs/FlowsApi.md#listFlowsByNamespace) | **GET** /api/v1/{tenant}/flows/{namespace} | Retrieve all flows from a given namespace
*KestraIoKestraSdk.FlowsApi* | [**searchConcurrencyLimits**](docs/FlowsApi.md#searchConcurrencyLimits) | **GET** /api/v1/{tenant}/concurrency-limit/search | Search for flow concurrency limits
*KestraIoKestraSdk.FlowsApi* | [**searchFlows**](docs/FlowsApi.md#searchFlows) | **GET** /api/v1/{tenant}/flows/search | Search for flows
*KestraIoKestraSdk.FlowsApi* | [**searchFlowsBySourceCode**](docs/FlowsApi.md#searchFlowsBySourceCode) | **GET** /api/v1/{tenant}/flows/source | Search for flows source code
*KestraIoKestraSdk.FlowsApi* | [**taskFromFlow**](docs/FlowsApi.md#taskFromFlow) | **GET** /api/v1/{tenant}/flows/{namespace}/{id}/tasks/{taskId} | Get a flow task
*KestraIoKestraSdk.FlowsApi* | [**updateConcurrencyLimit**](docs/FlowsApi.md#updateConcurrencyLimit) | **PUT** /api/v1/{tenant}/concurrency-limit/{namespace}/{flowId} | Update a flow concurrency limit
*KestraIoKestraSdk.FlowsApi* | [**updateFlow**](docs/FlowsApi.md#updateFlow) | **PUT** /api/v1/{tenant}/flows/{namespace}/{id} | Update a flow
*KestraIoKestraSdk.FlowsApi* | [**updateFlowsInNamespace**](docs/FlowsApi.md#updateFlowsInNamespace) | **POST** /api/v1/{tenant}/flows/{namespace} | Update a complete namespace from yaml source
*KestraIoKestraSdk.FlowsApi* | [**updateTask**](docs/FlowsApi.md#updateTask) | **PATCH** /api/v1/{tenant}/flows/{namespace}/{id}/{taskId} | Update a single task on a flow
*KestraIoKestraSdk.FlowsApi* | [**validateFlows**](docs/FlowsApi.md#validateFlows) | **POST** /api/v1/{tenant}/flows/validate | Validate a list of flows
*KestraIoKestraSdk.FlowsApi* | [**validateTask**](docs/FlowsApi.md#validateTask) | **POST** /api/v1/{tenant}/flows/validate/task | Validate a task
*KestraIoKestraSdk.FlowsApi* | [**validateTrigger**](docs/FlowsApi.md#validateTrigger) | **POST** /api/v1/{tenant}/flows/validate/trigger | Validate trigger
*KestraIoKestraSdk.GroupsApi* | [**addUserToGroup**](docs/GroupsApi.md#addUserToGroup) | **PUT** /api/v1/{tenant}/groups/{id}/members/{userId} | Add a user to a group
*KestraIoKestraSdk.GroupsApi* | [**autocompleteGroups**](docs/GroupsApi.md#autocompleteGroups) | **POST** /api/v1/{tenant}/groups/autocomplete | List groups for autocomplete
*KestraIoKestraSdk.GroupsApi* | [**createGroup**](docs/GroupsApi.md#createGroup) | **POST** /api/v1/{tenant}/groups | Create a group
*KestraIoKestraSdk.GroupsApi* | [**deleteGroup**](docs/GroupsApi.md#deleteGroup) | **DELETE** /api/v1/{tenant}/groups/{id} | Delete a group
*KestraIoKestraSdk.GroupsApi* | [**deleteUserFromGroup**](docs/GroupsApi.md#deleteUserFromGroup) | **DELETE** /api/v1/{tenant}/groups/{id}/members/{userId} | Remove a user from a group
*KestraIoKestraSdk.GroupsApi* | [**group**](docs/GroupsApi.md#group) | **GET** /api/v1/{tenant}/groups/{id} | Retrieve a group
*KestraIoKestraSdk.GroupsApi* | [**listGroupIds**](docs/GroupsApi.md#listGroupIds) | **POST** /api/v1/{tenant}/groups/ids | List groups by ids
*KestraIoKestraSdk.GroupsApi* | [**searchGroupMembers**](docs/GroupsApi.md#searchGroupMembers) | **GET** /api/v1/{tenant}/groups/{id}/members | Search for users in a group
*KestraIoKestraSdk.GroupsApi* | [**searchGroups**](docs/GroupsApi.md#searchGroups) | **GET** /api/v1/{tenant}/groups/search | Search for groups
*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
*KestraIoKestraSdk.GroupsApi* | [**updateGroup**](docs/GroupsApi.md#updateGroup) | **PUT** /api/v1/{tenant}/groups/{id} | Update a group
*KestraIoKestraSdk.KVApi* | [**deleteKeyValue**](docs/KVApi.md#deleteKeyValue) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Delete a key-value pair
*KestraIoKestraSdk.KVApi* | [**deleteKeyValues**](docs/KVApi.md#deleteKeyValues) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/kv | Bulk-delete multiple key/value pairs from the given namespace.
*KestraIoKestraSdk.KVApi* | [**keyValue**](docs/KVApi.md#keyValue) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Get value for a key
*KestraIoKestraSdk.KVApi* | [**listAllKeys**](docs/KVApi.md#listAllKeys) | **GET** /api/v1/{tenant}/kv | List all keys
*KestraIoKestraSdk.KVApi* | [**listKeys**](docs/KVApi.md#listKeys) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv | List all keys for a namespace
*KestraIoKestraSdk.KVApi* | [**listKeysWithInheritence**](docs/KVApi.md#listKeysWithInheritence) | **GET** /api/v1/{tenant}/namespaces/{namespace}/kv/inheritance | List all keys for inherited namespaces
*KestraIoKestraSdk.KVApi* | [**setKeyValue**](docs/KVApi.md#setKeyValue) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/kv/{key} | Puts a key-value pair in store
*KestraIoKestraSdk.NamespacesApi* | [**autocompleteNamespaces**](docs/NamespacesApi.md#autocompleteNamespaces) | **POST** /api/v1/{tenant}/namespaces/autocomplete | List namespaces for autocomplete
*KestraIoKestraSdk.NamespacesApi* | [**createNamespace**](docs/NamespacesApi.md#createNamespace) | **POST** /api/v1/{tenant}/namespaces | Create a namespace
*KestraIoKestraSdk.NamespacesApi* | [**deleteNamespace**](docs/NamespacesApi.md#deleteNamespace) | **DELETE** /api/v1/{tenant}/namespaces/{id} | Delete a namespace
*KestraIoKestraSdk.NamespacesApi* | [**deleteSecret**](docs/NamespacesApi.md#deleteSecret) | **DELETE** /api/v1/{tenant}/namespaces/{namespace}/secrets/{key} | Delete a secret for a namespace
*KestraIoKestraSdk.NamespacesApi* | [**exportPluginDefaults**](docs/NamespacesApi.md#exportPluginDefaults) | **POST** /api/v1/{tenant}/namespaces/{id}/plugindefaults/export | Export this namespace plugin defaults
*KestraIoKestraSdk.NamespacesApi* | [**importPluginDefaults**](docs/NamespacesApi.md#importPluginDefaults) | **POST** /api/v1/{tenant}/namespaces/{id}/plugindefaults/import | Import plugin defaults in this namespace
*KestraIoKestraSdk.NamespacesApi* | [**inheritedPluginDefaults**](docs/NamespacesApi.md#inheritedPluginDefaults) | **GET** /api/v1/{tenant}/namespaces/{id}/inherited-plugindefaults | List inherited plugin defaults
*KestraIoKestraSdk.NamespacesApi* | [**inheritedSecrets**](docs/NamespacesApi.md#inheritedSecrets) | **GET** /api/v1/{tenant}/namespaces/{namespace}/inherited-secrets | List inherited secrets
*KestraIoKestraSdk.NamespacesApi* | [**inheritedVariables**](docs/NamespacesApi.md#inheritedVariables) | **GET** /api/v1/{tenant}/namespaces/{id}/inherited-variables | List inherited variables
*KestraIoKestraSdk.NamespacesApi* | [**listNamespaceSecrets**](docs/NamespacesApi.md#listNamespaceSecrets) | **GET** /api/v1/{tenant}/namespaces/{namespace}/secrets | Get secrets for a namespace
*KestraIoKestraSdk.NamespacesApi* | [**namespace**](docs/NamespacesApi.md#namespace) | **GET** /api/v1/{tenant}/namespaces/{id} | Get a namespace
*KestraIoKestraSdk.NamespacesApi* | [**patchSecret**](docs/NamespacesApi.md#patchSecret) | **PATCH** /api/v1/{tenant}/namespaces/{namespace}/secrets/{key} | Patch a secret metadata for a namespace
*KestraIoKestraSdk.NamespacesApi* | [**putSecrets**](docs/NamespacesApi.md#putSecrets) | **PUT** /api/v1/{tenant}/namespaces/{namespace}/secrets | Update secrets for a namespace
*KestraIoKestraSdk.NamespacesApi* | [**searchNamespaces**](docs/NamespacesApi.md#searchNamespaces) | **GET** /api/v1/{tenant}/namespaces/search | Search for namespaces
*KestraIoKestraSdk.NamespacesApi* | [**updateNamespace**](docs/NamespacesApi.md#updateNamespace) | **PUT** /api/v1/{tenant}/namespaces/{id} | Update a namespace
*KestraIoKestraSdk.RolesApi* | [**autocompleteRoles**](docs/RolesApi.md#autocompleteRoles) | **POST** /api/v1/{tenant}/roles/autocomplete | List roles for autocomplete
*KestraIoKestraSdk.RolesApi* | [**createRole**](docs/RolesApi.md#createRole) | **POST** /api/v1/{tenant}/roles | Create a role
*KestraIoKestraSdk.RolesApi* | [**deleteRole**](docs/RolesApi.md#deleteRole) | **DELETE** /api/v1/{tenant}/roles/{id} | Delete a role
*KestraIoKestraSdk.RolesApi* | [**listRolesFromGivenIds**](docs/RolesApi.md#listRolesFromGivenIds) | **POST** /api/v1/{tenant}/roles/ids | List roles by ids
*KestraIoKestraSdk.RolesApi* | [**role**](docs/RolesApi.md#role) | **GET** /api/v1/{tenant}/roles/{id} | Retrieve a role
*KestraIoKestraSdk.RolesApi* | [**searchRoles**](docs/RolesApi.md#searchRoles) | **GET** /api/v1/{tenant}/roles/search | Search for roles
*KestraIoKestraSdk.RolesApi* | [**updateRole**](docs/RolesApi.md#updateRole) | **PUT** /api/v1/{tenant}/roles/{id} | Update a role
*KestraIoKestraSdk.ServiceAccountApi* | [**createApiTokensForServiceAccount**](docs/ServiceAccountApi.md#createApiTokensForServiceAccount) | **POST** /api/v1/service-accounts/{id}/api-tokens | Create new API Token for a specific service account
*KestraIoKestraSdk.ServiceAccountApi* | [**createApiTokensForServiceAccountWithTenant**](docs/ServiceAccountApi.md#createApiTokensForServiceAccountWithTenant) | **POST** /api/v1/{tenant}/service-accounts/{id}/api-tokens | Create new API Token for a specific service account
*KestraIoKestraSdk.ServiceAccountApi* | [**createServiceAccount**](docs/ServiceAccountApi.md#createServiceAccount) | **POST** /api/v1/service-accounts | Create a service account
*KestraIoKestraSdk.ServiceAccountApi* | [**createServiceAccountForTenant**](docs/ServiceAccountApi.md#createServiceAccountForTenant) | **POST** /api/v1/{tenant}/service-accounts | Create a service account for the given tenant
*KestraIoKestraSdk.ServiceAccountApi* | [**deleteApiTokenForServiceAccount**](docs/ServiceAccountApi.md#deleteApiTokenForServiceAccount) | **DELETE** /api/v1/service-accounts/{id}/api-tokens/{tokenId} | Delete an API Token for specific service account and token id
*KestraIoKestraSdk.ServiceAccountApi* | [**deleteApiTokenForServiceAccountWithTenant**](docs/ServiceAccountApi.md#deleteApiTokenForServiceAccountWithTenant) | **DELETE** /api/v1/{tenant}/service-accounts/{id}/api-tokens/{tokenId} | Delete an API Token for specific service account and token id
*KestraIoKestraSdk.ServiceAccountApi* | [**deleteServiceAccount**](docs/ServiceAccountApi.md#deleteServiceAccount) | **DELETE** /api/v1/service-accounts/{id} | Delete a service account
*KestraIoKestraSdk.ServiceAccountApi* | [**deleteServiceAccountForTenant**](docs/ServiceAccountApi.md#deleteServiceAccountForTenant) | **DELETE** /api/v1/{tenant}/service-accounts/{id} | Delete a service account
*KestraIoKestraSdk.ServiceAccountApi* | [**listApiTokensForServiceAccount**](docs/ServiceAccountApi.md#listApiTokensForServiceAccount) | **GET** /api/v1/service-accounts/{id}/api-tokens | List API tokens for a specific service account
*KestraIoKestraSdk.ServiceAccountApi* | [**listApiTokensForServiceAccountWithTenant**](docs/ServiceAccountApi.md#listApiTokensForServiceAccountWithTenant) | **GET** /api/v1/{tenant}/service-accounts/{id}/api-tokens | List API tokens for a specific service account
*KestraIoKestraSdk.ServiceAccountApi* | [**listServiceAccounts**](docs/ServiceAccountApi.md#listServiceAccounts) | **GET** /api/v1/service-accounts | List service accounts. Superadmin-only. 
*KestraIoKestraSdk.ServiceAccountApi* | [**patchServiceAccountDetails**](docs/ServiceAccountApi.md#patchServiceAccountDetails) | **PATCH** /api/v1/service-accounts/{id} | Update service account details
*KestraIoKestraSdk.ServiceAccountApi* | [**patchServiceAccountSuperAdmin**](docs/ServiceAccountApi.md#patchServiceAccountSuperAdmin) | **PATCH** /api/v1/service-accounts/{id}/superadmin | Update service account superadmin privileges
*KestraIoKestraSdk.ServiceAccountApi* | [**serviceAccount**](docs/ServiceAccountApi.md#serviceAccount) | **GET** /api/v1/service-accounts/{id} | Get a service account
*KestraIoKestraSdk.ServiceAccountApi* | [**serviceAccountForTenant**](docs/ServiceAccountApi.md#serviceAccountForTenant) | **GET** /api/v1/{tenant}/service-accounts/{id} | Retrieve a service account
*KestraIoKestraSdk.ServiceAccountApi* | [**updateServiceAccount**](docs/ServiceAccountApi.md#updateServiceAccount) | **PUT** /api/v1/{tenant}/service-accounts/{id} | Update a user service account
*KestraIoKestraSdk.TestSuitesApi* | [**createTestSuite**](docs/TestSuitesApi.md#createTestSuite) | **POST** /api/v1/{tenant}/tests | Create a test from YAML source
*KestraIoKestraSdk.TestSuitesApi* | [**deleteTestSuite**](docs/TestSuitesApi.md#deleteTestSuite) | **DELETE** /api/v1/{tenant}/tests/{namespace}/{id} | Delete a test
*KestraIoKestraSdk.TestSuitesApi* | [**deleteTestSuitesByIds**](docs/TestSuitesApi.md#deleteTestSuitesByIds) | **DELETE** /api/v1/{tenant}/tests/by-ids | Delete multiple tests by id
*KestraIoKestraSdk.TestSuitesApi* | [**disableTestSuitesByIds**](docs/TestSuitesApi.md#disableTestSuitesByIds) | **POST** /api/v1/{tenant}/tests/disable/by-ids | Disable multiple tests by id
*KestraIoKestraSdk.TestSuitesApi* | [**enableTestSuitesByIds**](docs/TestSuitesApi.md#enableTestSuitesByIds) | **POST** /api/v1/{tenant}/tests/enable/by-ids | Enable multiple tests by id
*KestraIoKestraSdk.TestSuitesApi* | [**runTestSuite**](docs/TestSuitesApi.md#runTestSuite) | **POST** /api/v1/{tenant}/tests/{namespace}/{id}/run | Run a full test
*KestraIoKestraSdk.TestSuitesApi* | [**runTestSuitesByQuery**](docs/TestSuitesApi.md#runTestSuitesByQuery) | **POST** /api/v1/{tenant}/tests/run | Run multiple TestSuites by query
*KestraIoKestraSdk.TestSuitesApi* | [**searchTestSuites**](docs/TestSuitesApi.md#searchTestSuites) | **GET** /api/v1/{tenant}/tests/search | Search for tests
*KestraIoKestraSdk.TestSuitesApi* | [**searchTestSuitesResults**](docs/TestSuitesApi.md#searchTestSuitesResults) | **GET** /api/v1/{tenant}/tests/results/search | Search for tests results
*KestraIoKestraSdk.TestSuitesApi* | [**testResult**](docs/TestSuitesApi.md#testResult) | **GET** /api/v1/{tenant}/tests/results/{id} | Get a test result
*KestraIoKestraSdk.TestSuitesApi* | [**testSuite**](docs/TestSuitesApi.md#testSuite) | **GET** /api/v1/{tenant}/tests/{namespace}/{id} | Retrieve a test
*KestraIoKestraSdk.TestSuitesApi* | [**testsLastResult**](docs/TestSuitesApi.md#testsLastResult) | **POST** /api/v1/{tenant}/tests/results/search/last | Get tests last result
*KestraIoKestraSdk.TestSuitesApi* | [**updateTestSuite**](docs/TestSuitesApi.md#updateTestSuite) | **PUT** /api/v1/{tenant}/tests/{namespace}/{id} | Update a test from YAML source
*KestraIoKestraSdk.TestSuitesApi* | [**validateTestSuite**](docs/TestSuitesApi.md#validateTestSuite) | **POST** /api/v1/{tenant}/tests/validate | Validate a test
*KestraIoKestraSdk.TriggersApi* | [**deleteBackfill**](docs/TriggersApi.md#deleteBackfill) | **POST** /api/v1/{tenant}/triggers/backfill/delete | Delete a backfill
*KestraIoKestraSdk.TriggersApi* | [**deleteBackfillByIds**](docs/TriggersApi.md#deleteBackfillByIds) | **POST** /api/v1/{tenant}/triggers/backfill/delete/by-triggers | Delete backfill for given triggers
*KestraIoKestraSdk.TriggersApi* | [**deleteBackfillByQuery**](docs/TriggersApi.md#deleteBackfillByQuery) | **POST** /api/v1/{tenant}/triggers/backfill/delete/by-query | Delete backfill for given triggers
*KestraIoKestraSdk.TriggersApi* | [**deleteTrigger**](docs/TriggersApi.md#deleteTrigger) | **DELETE** /api/v1/{tenant}/triggers/{namespace}/{flowId}/{triggerId} | Delete a trigger
*KestraIoKestraSdk.TriggersApi* | [**deleteTriggersByIds**](docs/TriggersApi.md#deleteTriggersByIds) | **DELETE** /api/v1/{tenant}/triggers/delete/by-triggers | Delete given triggers
*KestraIoKestraSdk.TriggersApi* | [**deleteTriggersByQuery**](docs/TriggersApi.md#deleteTriggersByQuery) | **DELETE** /api/v1/{tenant}/triggers/delete/by-query | Delete triggers by query parameters
*KestraIoKestraSdk.TriggersApi* | [**disabledTriggersByIds**](docs/TriggersApi.md#disabledTriggersByIds) | **POST** /api/v1/{tenant}/triggers/set-disabled/by-triggers | Disable/enable given triggers
*KestraIoKestraSdk.TriggersApi* | [**disabledTriggersByQuery**](docs/TriggersApi.md#disabledTriggersByQuery) | **POST** /api/v1/{tenant}/triggers/set-disabled/by-query | Disable/enable triggers by query parameters
*KestraIoKestraSdk.TriggersApi* | [**exportTriggers**](docs/TriggersApi.md#exportTriggers) | **GET** /api/v1/{tenant}/triggers/export/by-query/csv | Export all triggers as a streamed CSV file
*KestraIoKestraSdk.TriggersApi* | [**pauseBackfill**](docs/TriggersApi.md#pauseBackfill) | **PUT** /api/v1/{tenant}/triggers/backfill/pause | Pause a backfill
*KestraIoKestraSdk.TriggersApi* | [**pauseBackfillByIds**](docs/TriggersApi.md#pauseBackfillByIds) | **POST** /api/v1/{tenant}/triggers/backfill/pause/by-triggers | Pause backfill for given triggers
*KestraIoKestraSdk.TriggersApi* | [**pauseBackfillByQuery**](docs/TriggersApi.md#pauseBackfillByQuery) | **POST** /api/v1/{tenant}/triggers/backfill/pause/by-query | Pause backfill for given triggers
*KestraIoKestraSdk.TriggersApi* | [**restartTrigger**](docs/TriggersApi.md#restartTrigger) | **POST** /api/v1/{tenant}/triggers/{namespace}/{flowId}/{triggerId}/restart | Restart a trigger
*KestraIoKestraSdk.TriggersApi* | [**searchTriggers**](docs/TriggersApi.md#searchTriggers) | **GET** /api/v1/{tenant}/triggers/search | Search for triggers
*KestraIoKestraSdk.TriggersApi* | [**searchTriggersForFlow**](docs/TriggersApi.md#searchTriggersForFlow) | **GET** /api/v1/{tenant}/triggers/{namespace}/{flowId} | Get all triggers for a flow
*KestraIoKestraSdk.TriggersApi* | [**unlockTrigger**](docs/TriggersApi.md#unlockTrigger) | **POST** /api/v1/{tenant}/triggers/{namespace}/{flowId}/{triggerId}/unlock | Unlock a trigger
*KestraIoKestraSdk.TriggersApi* | [**unlockTriggersByIds**](docs/TriggersApi.md#unlockTriggersByIds) | **POST** /api/v1/{tenant}/triggers/unlock/by-triggers | Unlock given triggers
*KestraIoKestraSdk.TriggersApi* | [**unlockTriggersByQuery**](docs/TriggersApi.md#unlockTriggersByQuery) | **POST** /api/v1/{tenant}/triggers/unlock/by-query | Unlock triggers by query parameters
*KestraIoKestraSdk.TriggersApi* | [**unpauseBackfill**](docs/TriggersApi.md#unpauseBackfill) | **PUT** /api/v1/{tenant}/triggers/backfill/unpause | Unpause a backfill
*KestraIoKestraSdk.TriggersApi* | [**unpauseBackfillByIds**](docs/TriggersApi.md#unpauseBackfillByIds) | **POST** /api/v1/{tenant}/triggers/backfill/unpause/by-triggers | Unpause backfill for given triggers
*KestraIoKestraSdk.TriggersApi* | [**unpauseBackfillByQuery**](docs/TriggersApi.md#unpauseBackfillByQuery) | **POST** /api/v1/{tenant}/triggers/backfill/unpause/by-query | Unpause backfill for given triggers
*KestraIoKestraSdk.TriggersApi* | [**updateTrigger**](docs/TriggersApi.md#updateTrigger) | **PUT** /api/v1/{tenant}/triggers | Update a trigger
*KestraIoKestraSdk.UsersApi* | [**autocompleteUsers**](docs/UsersApi.md#autocompleteUsers) | **POST** /api/v1/{tenant}/tenant-access/autocomplete | List users for autocomplete
*KestraIoKestraSdk.UsersApi* | [**createApiTokensForUser**](docs/UsersApi.md#createApiTokensForUser) | **POST** /api/v1/users/{id}/api-tokens | Create new API Token for a specific user
*KestraIoKestraSdk.UsersApi* | [**createUser**](docs/UsersApi.md#createUser) | **POST** /api/v1/users | Create a new user account
*KestraIoKestraSdk.UsersApi* | [**deleteApiTokenForUser**](docs/UsersApi.md#deleteApiTokenForUser) | **DELETE** /api/v1/users/{id}/api-tokens/{tokenId} | Delete an API Token for specific user and token id
*KestraIoKestraSdk.UsersApi* | [**deleteRefreshToken**](docs/UsersApi.md#deleteRefreshToken) | **DELETE** /api/v1/users/{id}/refresh-token | Delete a user refresh token
*KestraIoKestraSdk.UsersApi* | [**deleteUser**](docs/UsersApi.md#deleteUser) | **DELETE** /api/v1/users/{id} | Delete a user
*KestraIoKestraSdk.UsersApi* | [**deleteUserAuthMethod**](docs/UsersApi.md#deleteUserAuthMethod) | **DELETE** /api/v1/users/{id}/auths/{auth} | Update user password
*KestraIoKestraSdk.UsersApi* | [**impersonate**](docs/UsersApi.md#impersonate) | **POST** /api/v1/users/{id}/impersonate | Impersonate a user
*KestraIoKestraSdk.UsersApi* | [**listApiTokensForUser**](docs/UsersApi.md#listApiTokensForUser) | **GET** /api/v1/users/{id}/api-tokens | List API tokens for a specific user
*KestraIoKestraSdk.UsersApi* | [**listUsers**](docs/UsersApi.md#listUsers) | **GET** /api/v1/users | Retrieve users
*KestraIoKestraSdk.UsersApi* | [**patchUser**](docs/UsersApi.md#patchUser) | **PATCH** /api/v1/users/{id} | Update user details
*KestraIoKestraSdk.UsersApi* | [**patchUserDemo**](docs/UsersApi.md#patchUserDemo) | **PATCH** /api/v1/users/{id}/restricted | Update user demo
*KestraIoKestraSdk.UsersApi* | [**patchUserPassword**](docs/UsersApi.md#patchUserPassword) | **PATCH** /api/v1/users/{id}/password | Update user password
*KestraIoKestraSdk.UsersApi* | [**patchUserSuperAdmin**](docs/UsersApi.md#patchUserSuperAdmin) | **PATCH** /api/v1/users/{id}/superadmin | Update user superadmin privileges
*KestraIoKestraSdk.UsersApi* | [**updateCurrentUserPassword**](docs/UsersApi.md#updateCurrentUserPassword) | **PUT** /api/v1/me/password | Update authenticated user password
*KestraIoKestraSdk.UsersApi* | [**updateUser**](docs/UsersApi.md#updateUser) | **PUT** /api/v1/users/{id} | Update a user account
*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
*KestraIoKestraSdk.UsersApi* | [**user**](docs/UsersApi.md#user) | **GET** /api/v1/users/{id} | Get a user


## Documentation for Models

 - [KestraIoKestraSdk.AbstractFlow](docs/AbstractFlow.md)
 - [KestraIoKestraSdk.AbstractGraph](docs/AbstractGraph.md)
 - [KestraIoKestraSdk.AbstractGraphBranchType](docs/AbstractGraphBranchType.md)
 - [KestraIoKestraSdk.AbstractTrigger](docs/AbstractTrigger.md)
 - [KestraIoKestraSdk.AbstractTriggerForExecution](docs/AbstractTriggerForExecution.md)
 - [KestraIoKestraSdk.AbstractUser](docs/AbstractUser.md)
 - [KestraIoKestraSdk.AbstractUserTenantIdentityProvider](docs/AbstractUserTenantIdentityProvider.md)
 - [KestraIoKestraSdk.Action](docs/Action.md)
 - [KestraIoKestraSdk.AiControllerAiProviderResponse](docs/AiControllerAiProviderResponse.md)
 - [KestraIoKestraSdk.AiControllerDashboardGenerationPrompt](docs/AiControllerDashboardGenerationPrompt.md)
 - [KestraIoKestraSdk.AiControllerFlowGenerationPrompt](docs/AiControllerFlowGenerationPrompt.md)
 - [KestraIoKestraSdk.ApiAuth](docs/ApiAuth.md)
 - [KestraIoKestraSdk.ApiAutocomplete](docs/ApiAutocomplete.md)
 - [KestraIoKestraSdk.ApiGroupSummary](docs/ApiGroupSummary.md)
 - [KestraIoKestraSdk.ApiIds](docs/ApiIds.md)
 - [KestraIoKestraSdk.ApiPatchSuperAdminRequest](docs/ApiPatchSuperAdminRequest.md)
 - [KestraIoKestraSdk.ApiRoleSummary](docs/ApiRoleSummary.md)
 - [KestraIoKestraSdk.ApiSecretListResponseApiSecretMeta](docs/ApiSecretListResponseApiSecretMeta.md)
 - [KestraIoKestraSdk.ApiSecretMeta](docs/ApiSecretMeta.md)
 - [KestraIoKestraSdk.ApiSecretMetaEE](docs/ApiSecretMetaEE.md)
 - [KestraIoKestraSdk.ApiSecretTag](docs/ApiSecretTag.md)
 - [KestraIoKestraSdk.ApiSecretValue](docs/ApiSecretValue.md)
 - [KestraIoKestraSdk.ApiTenant](docs/ApiTenant.md)
 - [KestraIoKestraSdk.ApiTenantSummary](docs/ApiTenantSummary.md)
 - [KestraIoKestraSdk.ApiToken](docs/ApiToken.md)
 - [KestraIoKestraSdk.ApiTokenList](docs/ApiTokenList.md)
 - [KestraIoKestraSdk.ApiUser](docs/ApiUser.md)
 - [KestraIoKestraSdk.AppGenerationPrompt](docs/AppGenerationPrompt.md)
 - [KestraIoKestraSdk.AppResponse](docs/AppResponse.md)
 - [KestraIoKestraSdk.AppResponseUILayout](docs/AppResponseUILayout.md)
 - [KestraIoKestraSdk.AppsControllerApiApp](docs/AppsControllerApiApp.md)
 - [KestraIoKestraSdk.AppsControllerApiAppCatalogItem](docs/AppsControllerApiAppCatalogItem.md)
 - [KestraIoKestraSdk.AppsControllerApiAppSource](docs/AppsControllerApiAppSource.md)
 - [KestraIoKestraSdk.AppsControllerApiAppTags](docs/AppsControllerApiAppTags.md)
 - [KestraIoKestraSdk.AppsControllerApiBulkImportResponse](docs/AppsControllerApiBulkImportResponse.md)
 - [KestraIoKestraSdk.AppsControllerApiBulkImportResponseError](docs/AppsControllerApiBulkImportResponseError.md)
 - [KestraIoKestraSdk.AppsControllerApiBulkOperationRequest](docs/AppsControllerApiBulkOperationRequest.md)
 - [KestraIoKestraSdk.Assertion](docs/Assertion.md)
 - [KestraIoKestraSdk.AssertionResult](docs/AssertionResult.md)
 - [KestraIoKestraSdk.AssertionRunError](docs/AssertionRunError.md)
 - [KestraIoKestraSdk.Asset](docs/Asset.md)
 - [KestraIoKestraSdk.AssetIdentifier](docs/AssetIdentifier.md)
 - [KestraIoKestraSdk.AssetTopologyGraph](docs/AssetTopologyGraph.md)
 - [KestraIoKestraSdk.AssetTopologyGraphEdge](docs/AssetTopologyGraphEdge.md)
 - [KestraIoKestraSdk.AssetTopologyGraphNode](docs/AssetTopologyGraphNode.md)
 - [KestraIoKestraSdk.AssetTopologyGraphNodeNodeType](docs/AssetTopologyGraphNodeNodeType.md)
 - [KestraIoKestraSdk.AssetsControllerApiAsset](docs/AssetsControllerApiAsset.md)
 - [KestraIoKestraSdk.AssetsControllerApiAssetLineageEvent](docs/AssetsControllerApiAssetLineageEvent.md)
 - [KestraIoKestraSdk.AssetsControllerApiAssetUsage](docs/AssetsControllerApiAssetUsage.md)
 - [KestraIoKestraSdk.AssetsDeclaration](docs/AssetsDeclaration.md)
 - [KestraIoKestraSdk.AssetsInOut](docs/AssetsInOut.md)
 - [KestraIoKestraSdk.AttributeReference](docs/AttributeReference.md)
 - [KestraIoKestraSdk.AuditLog](docs/AuditLog.md)
 - [KestraIoKestraSdk.AuditLogControllerApiAuditLogItem](docs/AuditLogControllerApiAuditLogItem.md)
 - [KestraIoKestraSdk.AuditLogControllerAuditLogDiff](docs/AuditLogControllerAuditLogDiff.md)
 - [KestraIoKestraSdk.AuditLogControllerAuditLogOption](docs/AuditLogControllerAuditLogOption.md)
 - [KestraIoKestraSdk.AuditLogControllerFindRequest](docs/AuditLogControllerFindRequest.md)
 - [KestraIoKestraSdk.AuditLogDetail](docs/AuditLogDetail.md)
 - [KestraIoKestraSdk.AuthControllerAuth](docs/AuthControllerAuth.md)
 - [KestraIoKestraSdk.AuthControllerInvitationUserRequest](docs/AuthControllerInvitationUserRequest.md)
 - [KestraIoKestraSdk.AuthControllerResetPasswordRequest](docs/AuthControllerResetPasswordRequest.md)
 - [KestraIoKestraSdk.Backfill](docs/Backfill.md)
 - [KestraIoKestraSdk.Banner](docs/Banner.md)
 - [KestraIoKestraSdk.BannerType](docs/BannerType.md)
 - [KestraIoKestraSdk.BaseAuditLog](docs/BaseAuditLog.md)
 - [KestraIoKestraSdk.BaseResourcePatchRequest](docs/BaseResourcePatchRequest.md)
 - [KestraIoKestraSdk.BaseResourceScimResource](docs/BaseResourceScimResource.md)
 - [KestraIoKestraSdk.BaseResourceSearchRequest](docs/BaseResourceSearchRequest.md)
 - [KestraIoKestraSdk.Binding](docs/Binding.md)
 - [KestraIoKestraSdk.BindingType](docs/BindingType.md)
 - [KestraIoKestraSdk.Blueprint](docs/Blueprint.md)
 - [KestraIoKestraSdk.BlueprintControllerApiBlueprintItem](docs/BlueprintControllerApiBlueprintItem.md)
 - [KestraIoKestraSdk.BlueprintControllerApiBlueprintItemWithSource](docs/BlueprintControllerApiBlueprintItemWithSource.md)
 - [KestraIoKestraSdk.BlueprintControllerApiBlueprintTagItem](docs/BlueprintControllerApiBlueprintTagItem.md)
 - [KestraIoKestraSdk.BlueprintControllerApiFlowBlueprint](docs/BlueprintControllerApiFlowBlueprint.md)
 - [KestraIoKestraSdk.BlueprintControllerFlowBlueprintCreateOrUpdate](docs/BlueprintControllerFlowBlueprintCreateOrUpdate.md)
 - [KestraIoKestraSdk.BlueprintControllerKind](docs/BlueprintControllerKind.md)
 - [KestraIoKestraSdk.BlueprintControllerUseBlueprintTemplateRequest](docs/BlueprintControllerUseBlueprintTemplateRequest.md)
 - [KestraIoKestraSdk.BlueprintControllerUseBlueprintTemplateResponse](docs/BlueprintControllerUseBlueprintTemplateResponse.md)
 - [KestraIoKestraSdk.BlueprintTemplate](docs/BlueprintTemplate.md)
 - [KestraIoKestraSdk.BlueprintWithFlowEntity](docs/BlueprintWithFlowEntity.md)
 - [KestraIoKestraSdk.Breakpoint](docs/Breakpoint.md)
 - [KestraIoKestraSdk.BulkErrorResponse](docs/BulkErrorResponse.md)
 - [KestraIoKestraSdk.BulkImportAppsRequest](docs/BulkImportAppsRequest.md)
 - [KestraIoKestraSdk.BulkResponse](docs/BulkResponse.md)
 - [KestraIoKestraSdk.Cache](docs/Cache.md)
 - [KestraIoKestraSdk.ChartChartOption](docs/ChartChartOption.md)
 - [KestraIoKestraSdk.ChartFiltersOverrides](docs/ChartFiltersOverrides.md)
 - [KestraIoKestraSdk.Check](docs/Check.md)
 - [KestraIoKestraSdk.CheckBehavior](docs/CheckBehavior.md)
 - [KestraIoKestraSdk.CheckStyle](docs/CheckStyle.md)
 - [KestraIoKestraSdk.Concurrency](docs/Concurrency.md)
 - [KestraIoKestraSdk.ConcurrencyBehavior](docs/ConcurrencyBehavior.md)
 - [KestraIoKestraSdk.ConcurrencyLimit](docs/ConcurrencyLimit.md)
 - [KestraIoKestraSdk.Condition](docs/Condition.md)
 - [KestraIoKestraSdk.ConversionServiceProvider](docs/ConversionServiceProvider.md)
 - [KestraIoKestraSdk.ConvertibleMultiValuesString](docs/ConvertibleMultiValuesString.md)
 - [KestraIoKestraSdk.ConvertibleValuesListString](docs/ConvertibleValuesListString.md)
 - [KestraIoKestraSdk.CreateApiTokenRequest](docs/CreateApiTokenRequest.md)
 - [KestraIoKestraSdk.CreateApiTokenResponse](docs/CreateApiTokenResponse.md)
 - [KestraIoKestraSdk.CreateNamespaceFileRequest](docs/CreateNamespaceFileRequest.md)
 - [KestraIoKestraSdk.CreateSecurityIntegrationRequest](docs/CreateSecurityIntegrationRequest.md)
 - [KestraIoKestraSdk.CrudEventType](docs/CrudEventType.md)
 - [KestraIoKestraSdk.DailyExecutionStatistics](docs/DailyExecutionStatistics.md)
 - [KestraIoKestraSdk.DailyExecutionStatisticsDuration](docs/DailyExecutionStatisticsDuration.md)
 - [KestraIoKestraSdk.DailyExecutionStatisticsExecutionCounts](docs/DailyExecutionStatisticsExecutionCounts.md)
 - [KestraIoKestraSdk.DashboardControllerDashboardResponse](docs/DashboardControllerDashboardResponse.md)
 - [KestraIoKestraSdk.DashboardControllerPreviewRequest](docs/DashboardControllerPreviewRequest.md)
 - [KestraIoKestraSdk.DashboardGenerationPrompt](docs/DashboardGenerationPrompt.md)
 - [KestraIoKestraSdk.DeleteTriggersByQueryRequest](docs/DeleteTriggersByQueryRequest.md)
 - [KestraIoKestraSdk.DependsOn](docs/DependsOn.md)
 - [KestraIoKestraSdk.DocumentationWithSchema](docs/DocumentationWithSchema.md)
 - [KestraIoKestraSdk.EditionProviderEdition](docs/EditionProviderEdition.md)
 - [KestraIoKestraSdk.Email](docs/Email.md)
 - [KestraIoKestraSdk.EvaluationType](docs/EvaluationType.md)
 - [KestraIoKestraSdk.EventAppResponse](docs/EventAppResponse.md)
 - [KestraIoKestraSdk.EventExecution](docs/EventExecution.md)
 - [KestraIoKestraSdk.EventExecutionStatusEvent](docs/EventExecutionStatusEvent.md)
 - [KestraIoKestraSdk.ExecutableTaskSubflowId](docs/ExecutableTaskSubflowId.md)
 - [KestraIoKestraSdk.Execution](docs/Execution.md)
 - [KestraIoKestraSdk.ExecutionControllerEvalResult](docs/ExecutionControllerEvalResult.md)
 - [KestraIoKestraSdk.ExecutionControllerExecutionResponse](docs/ExecutionControllerExecutionResponse.md)
 - [KestraIoKestraSdk.ExecutionControllerLastExecutionResponse](docs/ExecutionControllerLastExecutionResponse.md)
 - [KestraIoKestraSdk.ExecutionControllerSetLabelsByIdsRequest](docs/ExecutionControllerSetLabelsByIdsRequest.md)
 - [KestraIoKestraSdk.ExecutionControllerStateRequest](docs/ExecutionControllerStateRequest.md)
 - [KestraIoKestraSdk.ExecutionKind](docs/ExecutionKind.md)
 - [KestraIoKestraSdk.ExecutionMetadata](docs/ExecutionMetadata.md)
 - [KestraIoKestraSdk.ExecutionRepositoryInterfaceFlowFilter](docs/ExecutionRepositoryInterfaceFlowFilter.md)
 - [KestraIoKestraSdk.ExecutionStatusEvent](docs/ExecutionStatusEvent.md)
 - [KestraIoKestraSdk.ExecutionTrigger](docs/ExecutionTrigger.md)
 - [KestraIoKestraSdk.ExecutionUsage](docs/ExecutionUsage.md)
 - [KestraIoKestraSdk.FileAttributes](docs/FileAttributes.md)
 - [KestraIoKestraSdk.FileAttributesFileType](docs/FileAttributesFileType.md)
 - [KestraIoKestraSdk.FileMetas](docs/FileMetas.md)
 - [KestraIoKestraSdk.Filter](docs/Filter.md)
 - [KestraIoKestraSdk.Fixtures](docs/Fixtures.md)
 - [KestraIoKestraSdk.Flow](docs/Flow.md)
 - [KestraIoKestraSdk.FlowControllerFlowWithDeprecatedTasks](docs/FlowControllerFlowWithDeprecatedTasks.md)
 - [KestraIoKestraSdk.FlowControllerTaskValidationType](docs/FlowControllerTaskValidationType.md)
 - [KestraIoKestraSdk.FlowForExecution](docs/FlowForExecution.md)
 - [KestraIoKestraSdk.FlowGenerationPrompt](docs/FlowGenerationPrompt.md)
 - [KestraIoKestraSdk.FlowGraph](docs/FlowGraph.md)
 - [KestraIoKestraSdk.FlowGraphCluster](docs/FlowGraphCluster.md)
 - [KestraIoKestraSdk.FlowGraphEdge](docs/FlowGraphEdge.md)
 - [KestraIoKestraSdk.FlowId](docs/FlowId.md)
 - [KestraIoKestraSdk.FlowInterface](docs/FlowInterface.md)
 - [KestraIoKestraSdk.FlowNode](docs/FlowNode.md)
 - [KestraIoKestraSdk.FlowRelation](docs/FlowRelation.md)
 - [KestraIoKestraSdk.FlowServiceTaskDeprecation](docs/FlowServiceTaskDeprecation.md)
 - [KestraIoKestraSdk.FlowTopologyGraph](docs/FlowTopologyGraph.md)
 - [KestraIoKestraSdk.FlowTopologyGraphEdge](docs/FlowTopologyGraphEdge.md)
 - [KestraIoKestraSdk.FlowUsage](docs/FlowUsage.md)
 - [KestraIoKestraSdk.FlowWithSource](docs/FlowWithSource.md)
 - [KestraIoKestraSdk.ForwardSupportTicketRequest](docs/ForwardSupportTicketRequest.md)
 - [KestraIoKestraSdk.GroupIdentifier](docs/GroupIdentifier.md)
 - [KestraIoKestraSdk.GroupIdentifierMembership](docs/GroupIdentifierMembership.md)
 - [KestraIoKestraSdk.GroupUsage](docs/GroupUsage.md)
 - [KestraIoKestraSdk.HttpParameters](docs/HttpParameters.md)
 - [KestraIoKestraSdk.IAMBindingControllerApiBindingDetail](docs/IAMBindingControllerApiBindingDetail.md)
 - [KestraIoKestraSdk.IAMBindingControllerApiBindingGroup](docs/IAMBindingControllerApiBindingGroup.md)
 - [KestraIoKestraSdk.IAMBindingControllerApiBindingUser](docs/IAMBindingControllerApiBindingUser.md)
 - [KestraIoKestraSdk.IAMBindingControllerApiCreateBindingRequest](docs/IAMBindingControllerApiCreateBindingRequest.md)
 - [KestraIoKestraSdk.IAMBindingControllerApiRole](docs/IAMBindingControllerApiRole.md)
 - [KestraIoKestraSdk.IAMGroupControllerApiCreateGroupRequest](docs/IAMGroupControllerApiCreateGroupRequest.md)
 - [KestraIoKestraSdk.IAMGroupControllerApiGroupDetail](docs/IAMGroupControllerApiGroupDetail.md)
 - [KestraIoKestraSdk.IAMGroupControllerApiGroupMember](docs/IAMGroupControllerApiGroupMember.md)
 - [KestraIoKestraSdk.IAMGroupControllerApiGroupMembership](docs/IAMGroupControllerApiGroupMembership.md)
 - [KestraIoKestraSdk.IAMGroupControllerApiUpdateGroupRequest](docs/IAMGroupControllerApiUpdateGroupRequest.md)
 - [KestraIoKestraSdk.IAMInvitationControllerApiInvitationCreateRequest](docs/IAMInvitationControllerApiInvitationCreateRequest.md)
 - [KestraIoKestraSdk.IAMInvitationControllerApiInvitationDetail](docs/IAMInvitationControllerApiInvitationDetail.md)
 - [KestraIoKestraSdk.IAMInvitationControllerApiInvitationRole](docs/IAMInvitationControllerApiInvitationRole.md)
 - [KestraIoKestraSdk.IAMRoleControllerApiRoleCreateOrUpdateRequest](docs/IAMRoleControllerApiRoleCreateOrUpdateRequest.md)
 - [KestraIoKestraSdk.IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions](docs/IAMRoleControllerApiRoleCreateOrUpdateRequestPermissions.md)
 - [KestraIoKestraSdk.IAMRoleControllerApiRoleDetail](docs/IAMRoleControllerApiRoleDetail.md)
 - [KestraIoKestraSdk.IAMServiceAccountControllerApiCreateServiceAccountRequest](docs/IAMServiceAccountControllerApiCreateServiceAccountRequest.md)
 - [KestraIoKestraSdk.IAMServiceAccountControllerApiGroup](docs/IAMServiceAccountControllerApiGroup.md)
 - [KestraIoKestraSdk.IAMServiceAccountControllerApiPatchServiceAccountRequest](docs/IAMServiceAccountControllerApiPatchServiceAccountRequest.md)
 - [KestraIoKestraSdk.IAMServiceAccountControllerApiServiceAccountDetail](docs/IAMServiceAccountControllerApiServiceAccountDetail.md)
 - [KestraIoKestraSdk.IAMServiceAccountControllerApiServiceAccountRequest](docs/IAMServiceAccountControllerApiServiceAccountRequest.md)
 - [KestraIoKestraSdk.IAMServiceAccountControllerApiServiceAccountResponse](docs/IAMServiceAccountControllerApiServiceAccountResponse.md)
 - [KestraIoKestraSdk.IAMTenantAccessControllerApiAuthentication](docs/IAMTenantAccessControllerApiAuthentication.md)
 - [KestraIoKestraSdk.IAMTenantAccessControllerApiCreateTenantAccessRequest](docs/IAMTenantAccessControllerApiCreateTenantAccessRequest.md)
 - [KestraIoKestraSdk.IAMTenantAccessControllerApiGroup](docs/IAMTenantAccessControllerApiGroup.md)
 - [KestraIoKestraSdk.IAMTenantAccessControllerApiRoleAssignment](docs/IAMTenantAccessControllerApiRoleAssignment.md)
 - [KestraIoKestraSdk.IAMTenantAccessControllerApiTenantAccess](docs/IAMTenantAccessControllerApiTenantAccess.md)
 - [KestraIoKestraSdk.IAMTenantAccessControllerApiUserPermission](docs/IAMTenantAccessControllerApiUserPermission.md)
 - [KestraIoKestraSdk.IAMTenantAccessControllerApiUserTenantAccess](docs/IAMTenantAccessControllerApiUserTenantAccess.md)
 - [KestraIoKestraSdk.IAMTenantAccessControllerUserApiAutocomplete](docs/IAMTenantAccessControllerUserApiAutocomplete.md)
 - [KestraIoKestraSdk.IAMUserControllerApiCreateOrUpdateUserRequest](docs/IAMUserControllerApiCreateOrUpdateUserRequest.md)
 - [KestraIoKestraSdk.IAMUserControllerApiGroup](docs/IAMUserControllerApiGroup.md)
 - [KestraIoKestraSdk.IAMUserControllerApiPatchRestrictedRequest](docs/IAMUserControllerApiPatchRestrictedRequest.md)
 - [KestraIoKestraSdk.IAMUserControllerApiPatchUserPasswordRequest](docs/IAMUserControllerApiPatchUserPasswordRequest.md)
 - [KestraIoKestraSdk.IAMUserControllerApiUser](docs/IAMUserControllerApiUser.md)
 - [KestraIoKestraSdk.IAMUserControllerApiUserAuth](docs/IAMUserControllerApiUserAuth.md)
 - [KestraIoKestraSdk.IAMUserControllerApiUserSummary](docs/IAMUserControllerApiUserSummary.md)
 - [KestraIoKestraSdk.IAMUserGroupControllerApiUpdateUserGroupsRequest](docs/IAMUserGroupControllerApiUpdateUserGroupsRequest.md)
 - [KestraIoKestraSdk.IdWithNamespace](docs/IdWithNamespace.md)
 - [KestraIoKestraSdk.IdentityProvider](docs/IdentityProvider.md)
 - [KestraIoKestraSdk.ImportPluginDefaultsRequest](docs/ImportPluginDefaultsRequest.md)
 - [KestraIoKestraSdk.InputObject](docs/InputObject.md)
 - [KestraIoKestraSdk.InputType](docs/InputType.md)
 - [KestraIoKestraSdk.InstanceControllerApiActiveService](docs/InstanceControllerApiActiveService.md)
 - [KestraIoKestraSdk.InstanceControllerApiActiveServiceList](docs/InstanceControllerApiActiveServiceList.md)
 - [KestraIoKestraSdk.InstanceControllerApiCreateOrUpdateWorkerGroupRequest](docs/InstanceControllerApiCreateOrUpdateWorkerGroupRequest.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginArtifact](docs/InstanceControllerApiPluginArtifact.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginArtifactListPluginArtifact](docs/InstanceControllerApiPluginArtifactListPluginArtifact.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginArtifactListPluginResolutionResult](docs/InstanceControllerApiPluginArtifactListPluginResolutionResult.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginListRequest](docs/InstanceControllerApiPluginListRequest.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginVersionDetails](docs/InstanceControllerApiPluginVersionDetails.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginVersionDetailsApiPluginClass](docs/InstanceControllerApiPluginVersionDetailsApiPluginClass.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginVersionDetailsApiPluginClasses](docs/InstanceControllerApiPluginVersionDetailsApiPluginClasses.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginVersions](docs/InstanceControllerApiPluginVersions.md)
 - [KestraIoKestraSdk.InstanceControllerApiPluginVersionsApiPluginVersionAndMetadata](docs/InstanceControllerApiPluginVersionsApiPluginVersionAndMetadata.md)
 - [KestraIoKestraSdk.InstanceControllerApiServerInstance](docs/InstanceControllerApiServerInstance.md)
 - [KestraIoKestraSdk.InstanceControllerApiServiceInstance](docs/InstanceControllerApiServiceInstance.md)
 - [KestraIoKestraSdk.InstanceControllerApiWorkerGroup](docs/InstanceControllerApiWorkerGroup.md)
 - [KestraIoKestraSdk.InstanceControllerApiWorkerGroupDetails](docs/InstanceControllerApiWorkerGroupDetails.md)
 - [KestraIoKestraSdk.InstanceControllerApiWorkerGroupItem](docs/InstanceControllerApiWorkerGroupItem.md)
 - [KestraIoKestraSdk.InstanceControllerApiWorkerGroupList](docs/InstanceControllerApiWorkerGroupList.md)
 - [KestraIoKestraSdk.Invitation](docs/Invitation.md)
 - [KestraIoKestraSdk.InvitationInvitationStatus](docs/InvitationInvitationStatus.md)
 - [KestraIoKestraSdk.Isolation](docs/Isolation.md)
 - [KestraIoKestraSdk.KVControllerApiDeleteBulkRequest](docs/KVControllerApiDeleteBulkRequest.md)
 - [KestraIoKestraSdk.KVControllerApiDeleteBulkResponse](docs/KVControllerApiDeleteBulkResponse.md)
 - [KestraIoKestraSdk.KVControllerKvDetail](docs/KVControllerKvDetail.md)
 - [KestraIoKestraSdk.KVEntry](docs/KVEntry.md)
 - [KestraIoKestraSdk.KVType](docs/KVType.md)
 - [KestraIoKestraSdk.KillSwitch](docs/KillSwitch.md)
 - [KestraIoKestraSdk.Label](docs/Label.md)
 - [KestraIoKestraSdk.LeftSidebarConfiguration](docs/LeftSidebarConfiguration.md)
 - [KestraIoKestraSdk.Level](docs/Level.md)
 - [KestraIoKestraSdk.LogEntry](docs/LogEntry.md)
 - [KestraIoKestraSdk.MapObjectObject](docs/MapObjectObject.md)
 - [KestraIoKestraSdk.MeControllerApiMe](docs/MeControllerApiMe.md)
 - [KestraIoKestraSdk.MeControllerApiProfile](docs/MeControllerApiProfile.md)
 - [KestraIoKestraSdk.MeControllerApiTenant](docs/MeControllerApiTenant.md)
 - [KestraIoKestraSdk.MeControllerApiUpdatePasswordRequest](docs/MeControllerApiUpdatePasswordRequest.md)
 - [KestraIoKestraSdk.MeControllerApiUserDetailsRequest](docs/MeControllerApiUserDetailsRequest.md)
 - [KestraIoKestraSdk.Meta](docs/Meta.md)
 - [KestraIoKestraSdk.Metric](docs/Metric.md)
 - [KestraIoKestraSdk.MetricAggregation](docs/MetricAggregation.md)
 - [KestraIoKestraSdk.MetricAggregations](docs/MetricAggregations.md)
 - [KestraIoKestraSdk.MetricEntry](docs/MetricEntry.md)
 - [KestraIoKestraSdk.MetricTag](docs/MetricTag.md)
 - [KestraIoKestraSdk.MiscControllerApiUsage](docs/MiscControllerApiUsage.md)
 - [KestraIoKestraSdk.MiscControllerConfiguration](docs/MiscControllerConfiguration.md)
 - [KestraIoKestraSdk.MiscControllerEEConfiguration](docs/MiscControllerEEConfiguration.md)
 - [KestraIoKestraSdk.MiscControllerEnvironment](docs/MiscControllerEnvironment.md)
 - [KestraIoKestraSdk.MiscControllerLicenseInfo](docs/MiscControllerLicenseInfo.md)
 - [KestraIoKestraSdk.MiscControllerPluginIdAndVersion](docs/MiscControllerPluginIdAndVersion.md)
 - [KestraIoKestraSdk.MiscControllerPreview](docs/MiscControllerPreview.md)
 - [KestraIoKestraSdk.MiscControllerTenantConfigurationInfo](docs/MiscControllerTenantConfigurationInfo.md)
 - [KestraIoKestraSdk.Name](docs/Name.md)
 - [KestraIoKestraSdk.Namespace](docs/Namespace.md)
 - [KestraIoKestraSdk.NamespaceAllowedNamespace](docs/NamespaceAllowedNamespace.md)
 - [KestraIoKestraSdk.NamespaceControllerApiInheritedPluginDefaultFromNamespace](docs/NamespaceControllerApiInheritedPluginDefaultFromNamespace.md)
 - [KestraIoKestraSdk.NamespaceFileRevision](docs/NamespaceFileRevision.md)
 - [KestraIoKestraSdk.NamespaceLight](docs/NamespaceLight.md)
 - [KestraIoKestraSdk.Output](docs/Output.md)
 - [KestraIoKestraSdk.OutputValue](docs/OutputValue.md)
 - [KestraIoKestraSdk.PageRequest](docs/PageRequest.md)
 - [KestraIoKestraSdk.PagedResultsApiGroupSummary](docs/PagedResultsApiGroupSummary.md)
 - [KestraIoKestraSdk.PagedResultsApiRoleSummary](docs/PagedResultsApiRoleSummary.md)
 - [KestraIoKestraSdk.PagedResultsAppsControllerApiApp](docs/PagedResultsAppsControllerApiApp.md)
 - [KestraIoKestraSdk.PagedResultsAppsControllerApiAppCatalogItem](docs/PagedResultsAppsControllerApiAppCatalogItem.md)
 - [KestraIoKestraSdk.PagedResultsAssetsControllerApiAsset](docs/PagedResultsAssetsControllerApiAsset.md)
 - [KestraIoKestraSdk.PagedResultsAssetsControllerApiAssetLineageEvent](docs/PagedResultsAssetsControllerApiAssetLineageEvent.md)
 - [KestraIoKestraSdk.PagedResultsAssetsControllerApiAssetUsage](docs/PagedResultsAssetsControllerApiAssetUsage.md)
 - [KestraIoKestraSdk.PagedResultsAuditLogControllerApiAuditLogItem](docs/PagedResultsAuditLogControllerApiAuditLogItem.md)
 - [KestraIoKestraSdk.PagedResultsBlueprint](docs/PagedResultsBlueprint.md)
 - [KestraIoKestraSdk.PagedResultsBlueprintControllerApiBlueprintItem](docs/PagedResultsBlueprintControllerApiBlueprintItem.md)
 - [KestraIoKestraSdk.PagedResultsConcurrencyLimit](docs/PagedResultsConcurrencyLimit.md)
 - [KestraIoKestraSdk.PagedResultsDashboardControllerDashboardResponse](docs/PagedResultsDashboardControllerDashboardResponse.md)
 - [KestraIoKestraSdk.PagedResultsExecution](docs/PagedResultsExecution.md)
 - [KestraIoKestraSdk.PagedResultsFlow](docs/PagedResultsFlow.md)
 - [KestraIoKestraSdk.PagedResultsIAMBindingControllerApiBindingDetail](docs/PagedResultsIAMBindingControllerApiBindingDetail.md)
 - [KestraIoKestraSdk.PagedResultsIAMGroupControllerApiGroupMember](docs/PagedResultsIAMGroupControllerApiGroupMember.md)
 - [KestraIoKestraSdk.PagedResultsIAMInvitationControllerApiInvitationDetail](docs/PagedResultsIAMInvitationControllerApiInvitationDetail.md)
 - [KestraIoKestraSdk.PagedResultsIAMServiceAccountControllerApiServiceAccountDetail](docs/PagedResultsIAMServiceAccountControllerApiServiceAccountDetail.md)
 - [KestraIoKestraSdk.PagedResultsIAMTenantAccessControllerApiUserTenantAccess](docs/PagedResultsIAMTenantAccessControllerApiUserTenantAccess.md)
 - [KestraIoKestraSdk.PagedResultsIAMUserControllerApiUserSummary](docs/PagedResultsIAMUserControllerApiUserSummary.md)
 - [KestraIoKestraSdk.PagedResultsInstanceControllerApiPluginArtifact](docs/PagedResultsInstanceControllerApiPluginArtifact.md)
 - [KestraIoKestraSdk.PagedResultsInstanceControllerApiServiceInstance](docs/PagedResultsInstanceControllerApiServiceInstance.md)
 - [KestraIoKestraSdk.PagedResultsKVEntry](docs/PagedResultsKVEntry.md)
 - [KestraIoKestraSdk.PagedResultsLogEntry](docs/PagedResultsLogEntry.md)
 - [KestraIoKestraSdk.PagedResultsMapStringObject](docs/PagedResultsMapStringObject.md)
 - [KestraIoKestraSdk.PagedResultsMetricEntry](docs/PagedResultsMetricEntry.md)
 - [KestraIoKestraSdk.PagedResultsNamespace](docs/PagedResultsNamespace.md)
 - [KestraIoKestraSdk.PagedResultsSearchResultFlow](docs/PagedResultsSearchResultFlow.md)
 - [KestraIoKestraSdk.PagedResultsTenant](docs/PagedResultsTenant.md)
 - [KestraIoKestraSdk.PagedResultsTestSuite](docs/PagedResultsTestSuite.md)
 - [KestraIoKestraSdk.PagedResultsTestSuiteRunResult](docs/PagedResultsTestSuiteRunResult.md)
 - [KestraIoKestraSdk.PagedResultsTrigger](docs/PagedResultsTrigger.md)
 - [KestraIoKestraSdk.PagedResultsTriggerControllerTriggers](docs/PagedResultsTriggerControllerTriggers.md)
 - [KestraIoKestraSdk.PatchOperation](docs/PatchOperation.md)
 - [KestraIoKestraSdk.PatchOperationPath](docs/PatchOperationPath.md)
 - [KestraIoKestraSdk.PatchOperationType](docs/PatchOperationType.md)
 - [KestraIoKestraSdk.PatchRequest](docs/PatchRequest.md)
 - [KestraIoKestraSdk.Permission](docs/Permission.md)
 - [KestraIoKestraSdk.Plugin](docs/Plugin.md)
 - [KestraIoKestraSdk.PluginArtifact](docs/PluginArtifact.md)
 - [KestraIoKestraSdk.PluginArtifactMetadata](docs/PluginArtifactMetadata.md)
 - [KestraIoKestraSdk.PluginControllerApiPluginVersions](docs/PluginControllerApiPluginVersions.md)
 - [KestraIoKestraSdk.PluginDefault](docs/PluginDefault.md)
 - [KestraIoKestraSdk.PluginIcon](docs/PluginIcon.md)
 - [KestraIoKestraSdk.PluginPluginElementMetadata](docs/PluginPluginElementMetadata.md)
 - [KestraIoKestraSdk.PluginSchema](docs/PluginSchema.md)
 - [KestraIoKestraSdk.PluginSubGroupPluginCategory](docs/PluginSubGroupPluginCategory.md)
 - [KestraIoKestraSdk.PropertyBoolean](docs/PropertyBoolean.md)
 - [KestraIoKestraSdk.PropertyDouble](docs/PropertyDouble.md)
 - [KestraIoKestraSdk.PropertyDuration](docs/PropertyDuration.md)
 - [KestraIoKestraSdk.PropertyListAsset](docs/PropertyListAsset.md)
 - [KestraIoKestraSdk.PropertyListAssetIdentifier](docs/PropertyListAssetIdentifier.md)
 - [KestraIoKestraSdk.PropertyListString](docs/PropertyListString.md)
 - [KestraIoKestraSdk.PropertyObject](docs/PropertyObject.md)
 - [KestraIoKestraSdk.PropertyString](docs/PropertyString.md)
 - [KestraIoKestraSdk.QueryFilter](docs/QueryFilter.md)
 - [KestraIoKestraSdk.QueryFilterField](docs/QueryFilterField.md)
 - [KestraIoKestraSdk.QueryFilterOp](docs/QueryFilterOp.md)
 - [KestraIoKestraSdk.RBACServiceRoleAssignmentRoleOrigin](docs/RBACServiceRoleAssignmentRoleOrigin.md)
 - [KestraIoKestraSdk.Relation](docs/Relation.md)
 - [KestraIoKestraSdk.Relation1](docs/Relation1.md)
 - [KestraIoKestraSdk.RelationType](docs/RelationType.md)
 - [KestraIoKestraSdk.ResourceType](docs/ResourceType.md)
 - [KestraIoKestraSdk.ResourceType1](docs/ResourceType1.md)
 - [KestraIoKestraSdk.ResourceTypeSchemaExtensionConfiguration](docs/ResourceTypeSchemaExtensionConfiguration.md)
 - [KestraIoKestraSdk.RightSidebarConfiguration](docs/RightSidebarConfiguration.md)
 - [KestraIoKestraSdk.RightSidebarConfigurationCustomLink](docs/RightSidebarConfigurationCustomLink.md)
 - [KestraIoKestraSdk.Role](docs/Role.md)
 - [KestraIoKestraSdk.RoleUsage](docs/RoleUsage.md)
 - [KestraIoKestraSdk.SDKAuth](docs/SDKAuth.md)
 - [KestraIoKestraSdk.SLA](docs/SLA.md)
 - [KestraIoKestraSdk.SLABehavior](docs/SLABehavior.md)
 - [KestraIoKestraSdk.SLALabels](docs/SLALabels.md)
 - [KestraIoKestraSdk.SLAType](docs/SLAType.md)
 - [KestraIoKestraSdk.Schema](docs/Schema.md)
 - [KestraIoKestraSdk.SchemaAttribute](docs/SchemaAttribute.md)
 - [KestraIoKestraSdk.SchemaAttributeMutability](docs/SchemaAttributeMutability.md)
 - [KestraIoKestraSdk.SchemaAttributeReturned](docs/SchemaAttributeReturned.md)
 - [KestraIoKestraSdk.SchemaAttributeType](docs/SchemaAttributeType.md)
 - [KestraIoKestraSdk.SchemaAttributeUniqueness](docs/SchemaAttributeUniqueness.md)
 - [KestraIoKestraSdk.SchemaType](docs/SchemaType.md)
 - [KestraIoKestraSdk.ScimExtension](docs/ScimExtension.md)
 - [KestraIoKestraSdk.ScimResource](docs/ScimResource.md)
 - [KestraIoKestraSdk.ScimResourceWithOptionalId](docs/ScimResourceWithOptionalId.md)
 - [KestraIoKestraSdk.ScimUser](docs/ScimUser.md)
 - [KestraIoKestraSdk.SearchRequest](docs/SearchRequest.md)
 - [KestraIoKestraSdk.SearchResultFlow](docs/SearchResultFlow.md)
 - [KestraIoKestraSdk.SecurityIntegrationType](docs/SecurityIntegrationType.md)
 - [KestraIoKestraSdk.ServerConfig](docs/ServerConfig.md)
 - [KestraIoKestraSdk.ServerConfigLiveness](docs/ServerConfigLiveness.md)
 - [KestraIoKestraSdk.ServerInstance](docs/ServerInstance.md)
 - [KestraIoKestraSdk.ServerInstanceType](docs/ServerInstanceType.md)
 - [KestraIoKestraSdk.ServiceInstance](docs/ServiceInstance.md)
 - [KestraIoKestraSdk.ServiceInstanceTimestampedEvent](docs/ServiceInstanceTimestampedEvent.md)
 - [KestraIoKestraSdk.ServiceProviderConfiguration](docs/ServiceProviderConfiguration.md)
 - [KestraIoKestraSdk.ServiceProviderConfigurationAuthenticationSchema](docs/ServiceProviderConfigurationAuthenticationSchema.md)
 - [KestraIoKestraSdk.ServiceProviderConfigurationAuthenticationSchemaType](docs/ServiceProviderConfigurationAuthenticationSchemaType.md)
 - [KestraIoKestraSdk.ServiceProviderConfigurationBulkConfiguration](docs/ServiceProviderConfigurationBulkConfiguration.md)
 - [KestraIoKestraSdk.ServiceProviderConfigurationFilterConfiguration](docs/ServiceProviderConfigurationFilterConfiguration.md)
 - [KestraIoKestraSdk.ServiceProviderConfigurationSupportedConfiguration](docs/ServiceProviderConfigurationSupportedConfiguration.md)
 - [KestraIoKestraSdk.ServiceServiceState](docs/ServiceServiceState.md)
 - [KestraIoKestraSdk.ServiceType](docs/ServiceType.md)
 - [KestraIoKestraSdk.SetAppsCatalogLogoRequest](docs/SetAppsCatalogLogoRequest.md)
 - [KestraIoKestraSdk.SetupConfiguration](docs/SetupConfiguration.md)
 - [KestraIoKestraSdk.SoftDeletableFlowInterface](docs/SoftDeletableFlowInterface.md)
 - [KestraIoKestraSdk.SortOrder](docs/SortOrder.md)
 - [KestraIoKestraSdk.SortRequest](docs/SortRequest.md)
 - [KestraIoKestraSdk.State](docs/State.md)
 - [KestraIoKestraSdk.StateHistory](docs/StateHistory.md)
 - [KestraIoKestraSdk.StateType](docs/StateType.md)
 - [KestraIoKestraSdk.SupportDebugInfo](docs/SupportDebugInfo.md)
 - [KestraIoKestraSdk.SupportDebugInfoAuthType](docs/SupportDebugInfoAuthType.md)
 - [KestraIoKestraSdk.SupportDebugInfoDeploymentType](docs/SupportDebugInfoDeploymentType.md)
 - [KestraIoKestraSdk.Task](docs/Task.md)
 - [KestraIoKestraSdk.TaskFixture](docs/TaskFixture.md)
 - [KestraIoKestraSdk.TaskForExecution](docs/TaskForExecution.md)
 - [KestraIoKestraSdk.TaskRun](docs/TaskRun.md)
 - [KestraIoKestraSdk.TaskRunAttempt](docs/TaskRunAttempt.md)
 - [KestraIoKestraSdk.Tenant](docs/Tenant.md)
 - [KestraIoKestraSdk.TenantAppCatalogConfig](docs/TenantAppCatalogConfig.md)
 - [KestraIoKestraSdk.TenantControllerAppsCatalogConfigRequest](docs/TenantControllerAppsCatalogConfigRequest.md)
 - [KestraIoKestraSdk.TenantControllerAppsCatalogConfigResponse](docs/TenantControllerAppsCatalogConfigResponse.md)
 - [KestraIoKestraSdk.TenantInterface](docs/TenantInterface.md)
 - [KestraIoKestraSdk.TenantUsage](docs/TenantUsage.md)
 - [KestraIoKestraSdk.TestState](docs/TestState.md)
 - [KestraIoKestraSdk.TestSuite](docs/TestSuite.md)
 - [KestraIoKestraSdk.TestSuiteControllerRunRequest](docs/TestSuiteControllerRunRequest.md)
 - [KestraIoKestraSdk.TestSuiteControllerSearchTestsLastResult](docs/TestSuiteControllerSearchTestsLastResult.md)
 - [KestraIoKestraSdk.TestSuiteControllerTestSuiteApiId](docs/TestSuiteControllerTestSuiteApiId.md)
 - [KestraIoKestraSdk.TestSuiteControllerTestSuiteBulkRequest](docs/TestSuiteControllerTestSuiteBulkRequest.md)
 - [KestraIoKestraSdk.TestSuiteControllerTestsLastResultResponse](docs/TestSuiteControllerTestsLastResultResponse.md)
 - [KestraIoKestraSdk.TestSuiteGenerationPrompt](docs/TestSuiteGenerationPrompt.md)
 - [KestraIoKestraSdk.TestSuiteRunResult](docs/TestSuiteRunResult.md)
 - [KestraIoKestraSdk.TestSuiteServiceRunByQueryRequest](docs/TestSuiteServiceRunByQueryRequest.md)
 - [KestraIoKestraSdk.TestSuiteServiceTestRunByQueryResult](docs/TestSuiteServiceTestRunByQueryResult.md)
 - [KestraIoKestraSdk.TheLabelsToPassToTheExecutionCreated](docs/TheLabelsToPassToTheExecutionCreated.md)
 - [KestraIoKestraSdk.TimeWindow](docs/TimeWindow.md)
 - [KestraIoKestraSdk.Trigger](docs/Trigger.md)
 - [KestraIoKestraSdk.TriggerContext](docs/TriggerContext.md)
 - [KestraIoKestraSdk.TriggerControllerSetDisabledRequest](docs/TriggerControllerSetDisabledRequest.md)
 - [KestraIoKestraSdk.TriggerControllerTriggers](docs/TriggerControllerTriggers.md)
 - [KestraIoKestraSdk.TriggerFixture](docs/TriggerFixture.md)
 - [KestraIoKestraSdk.Type](docs/Type.md)
 - [KestraIoKestraSdk.UnitTest](docs/UnitTest.md)
 - [KestraIoKestraSdk.UnitTestResult](docs/UnitTestResult.md)
 - [KestraIoKestraSdk.UploadVersionedPluginsRequest](docs/UploadVersionedPluginsRequest.md)
 - [KestraIoKestraSdk.UsageEE](docs/UsageEE.md)
 - [KestraIoKestraSdk.UserGroup](docs/UserGroup.md)
 - [KestraIoKestraSdk.UserGroupType](docs/UserGroupType.md)
 - [KestraIoKestraSdk.UserType](docs/UserType.md)
 - [KestraIoKestraSdk.UserUsage](docs/UserUsage.md)
 - [KestraIoKestraSdk.UsernamePasswordCredentials](docs/UsernamePasswordCredentials.md)
 - [KestraIoKestraSdk.ValidateConstraintViolation](docs/ValidateConstraintViolation.md)
 - [KestraIoKestraSdk.ValuePathExpression](docs/ValuePathExpression.md)
 - [KestraIoKestraSdk.WebhookResponse](docs/WebhookResponse.md)
 - [KestraIoKestraSdk.WorkerGroup](docs/WorkerGroup.md)
 - [KestraIoKestraSdk.WorkerGroupFallback](docs/WorkerGroupFallback.md)
 - [KestraIoKestraSdk.WorkerTaskRestartStrategy](docs/WorkerTaskRestartStrategy.md)


## Documentation for Authorization


Authentication schemes defined for the API:
### basicAuth

- **Type**: HTTP basic authentication

### bearerAuth

- **Type**: Bearer authentication (Bearer)

