AclEntryApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
Method | HTTP request | Description |
---|---|---|
deleteAclEntry | DELETE AclEntryApi | Delete a AclEntry. |
deleteAclEntry
Void
deleteAclEntry(id)
Delete a AclEntry.
Deletes a specific AclEntry.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclEntryApi;
AclEntryApi apiInstance = new AclEntryApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the AclEntry.
try {
Void result = apiInstance.deleteAclEntry(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclEntryApi#deleteAclEntry");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the AclEntry. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getAclEntry
AclEntry
getAclEntry(id)
Retrieve a single AclEntry
Retrieves a single AclEntry for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclEntryApi;
AclEntryApi apiInstance = new AclEntryApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the AclEntry.
try {
AclEntry result = apiInstance.getAclEntry(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclEntryApi#getAclEntry");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the AclEntry. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getAclEntryList
AclEntry
getAclEntryList()
Retrieve a list of AclEntrys
Retrieves a list of AclEntrys.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclEntryApi;
AclEntryApi apiInstance = new AclEntryApi();
try {
AclEntry result = apiInstance.getAclEntryList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclEntryApi#getAclEntryList");
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
postAclEntry
AclEntry
postAclEntry(aclEntry)
Create a new AclEntry
Creates a new AclEntry.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclEntryApi;
AclEntryApi apiInstance = new AclEntryApi();
AclEntry aclEntry = new AclEntry(); // AclEntry | AclEntry details.
try {
AclEntry result = apiInstance.postAclEntry(aclEntry);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclEntryApi#postAclEntry");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
aclEntry | AclEntry | AclEntry details. |
Return type
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateAclEntry
AclEntry
updateAclEntry(idaclEntry)
Update an existing AclEntry
Updates an existing AclEntry.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclEntryApi;
AclEntryApi apiInstance = new AclEntryApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the AclEntry.
AclEntry aclEntry = new AclEntry(); // AclEntry | Updated AclEntry details.
try {
AclEntry result = apiInstance.updateAclEntry(idaclEntry);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclEntryApi#updateAclEntry");
e.printStackTrace();
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
id | UUID | Unique identifier for the AclEntry. | |
aclEntry | AclEntry | Updated AclEntry 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] |