ExecModuleApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteExecModule | DELETE ExecModuleApi | Delete a ExecModule. |
deleteExecModule
Void
deleteExecModule(id)
Delete a ExecModule.
Deletes a specific ExecModule.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ExecModuleApi;
ExecModuleApi apiInstance = new ExecModuleApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ExecModule.
try {
Void result = apiInstance.deleteExecModule(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ExecModuleApi#deleteExecModule");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ExecModule. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getExecModule
ExecModule
getExecModule(id)
Retrieve a single ExecModule
Retrieves a single ExecModule for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ExecModuleApi;
ExecModuleApi apiInstance = new ExecModuleApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ExecModule.
try {
ExecModule result = apiInstance.getExecModule(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ExecModuleApi#getExecModule");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ExecModule. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getExecModuleList
ExecModule
getExecModuleList()
Retrieve a list of ExecModules
Retrieves a list of ExecModules.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ExecModuleApi;
ExecModuleApi apiInstance = new ExecModuleApi();
try {
ExecModule result = apiInstance.getExecModuleList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ExecModuleApi#getExecModuleList");
e.printStackTrace();
}
Parameters
This endpoint does not need any parameter.
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
postExecModule
ExecModule
postExecModule(execModule)
Create a new ExecModule
Creates a new ExecModule.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ExecModuleApi;
ExecModuleApi apiInstance = new ExecModuleApi();
ExecModule execModule = new ExecModule(); // ExecModule | ExecModule details.
try {
ExecModule result = apiInstance.postExecModule(execModule);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ExecModuleApi#postExecModule");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
execModule | ExecModule | ExecModule details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateExecModule
ExecModule
updateExecModule(idexecModule)
Update an existing ExecModule
Updates an existing ExecModule.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.ExecModuleApi;
ExecModuleApi apiInstance = new ExecModuleApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the ExecModule.
ExecModule execModule = new ExecModule(); // ExecModule | Updated ExecModule details.
try {
ExecModule result = apiInstance.updateExecModule(idexecModule);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ExecModuleApi#updateExecModule");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the ExecModule. | |
execModule | ExecModule | Updated ExecModule details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
Generated Version Details
~ | value |
---|---|
GENERATOR VERSION | com.valkyrlabs:ValkyrAI API 1.0-SNAPSHOT |
API ARTIFACT | com.valkyrlabs.valkyrai-api.jar |
GENERATOR VERSION | org.openapitools.openapi-generator:7.5.0 |
GENERATOR CLASS | org.openapitools.codegen.languages.SpringCodegen |
GENERATED DATE | 2025-04-09T20:27:13.881184-07:00[America/Los_Angeles] |