FileAuditLogApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| deleteFileAuditLog | DELETE FileAuditLogApi | Delete a FileAuditLog. |
deleteFileAuditLog
Void
deleteFileAuditLog(id)
Delete a FileAuditLog.
Deletes a specific FileAuditLog.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.FileAuditLogApi;
FileAuditLogApi apiInstance = new FileAuditLogApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the FileAuditLog.
try {
Void result = apiInstance.deleteFileAuditLog(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling FileAuditLogApi#deleteFileAuditLog");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the FileAuditLog. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getFileAuditLog
FileAuditLog
getFileAuditLog(id)
Retrieve a single FileAuditLog
Retrieves a single FileAuditLog for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.FileAuditLogApi;
FileAuditLogApi apiInstance = new FileAuditLogApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the FileAuditLog.
try {
FileAuditLog result = apiInstance.getFileAuditLog(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling FileAuditLogApi#getFileAuditLog");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the FileAuditLog. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getFileAuditLogList
FileAuditLog
getFileAuditLogList(pagesizesort)
Retrieve a list of FileAuditLogs
Retrieves a list of FileAuditLogs.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.FileAuditLogApi;
FileAuditLogApi apiInstance = new FileAuditLogApi();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |
try {
FileAuditLog result = apiInstance.getFileAuditLogList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling FileAuditLogApi#getFileAuditLogList");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| page | Integer | [optional] [default to 0] | |
| size | Integer | [optional] [default to 20] | |
| sort | List<String> | [optional] |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
postFileAuditLog
FileAuditLog
postFileAuditLog(fileAuditLog)
Create a new FileAuditLog
Creates a new FileAuditLog.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.FileAuditLogApi;
FileAuditLogApi apiInstance = new FileAuditLogApi();
FileAuditLog fileAuditLog = new FileAuditLog(); // FileAuditLog | FileAuditLog details.
try {
FileAuditLog result = apiInstance.postFileAuditLog(fileAuditLog);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling FileAuditLogApi#postFileAuditLog");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| fileAuditLog | FileAuditLog | FileAuditLog details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateFileAuditLog
FileAuditLog
updateFileAuditLog(idfileAuditLog)
Update an existing FileAuditLog
Updates an existing FileAuditLog.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.FileAuditLogApi;
FileAuditLogApi apiInstance = new FileAuditLogApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the FileAuditLog.
FileAuditLog fileAuditLog = new FileAuditLog(); // FileAuditLog | Updated FileAuditLog details.
try {
FileAuditLog result = apiInstance.updateFileAuditLog(idfileAuditLog);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling FileAuditLogApi#updateFileAuditLog");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the FileAuditLog. | |
| fileAuditLog | FileAuditLog | Updated FileAuditLog 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.1-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-12-03T11:13:18.492704-08:00[America/Los_Angeles] |