Skip to main content

AclEntryApi

valkyrai-api

All URIs are relative to http://localhost:8080/v1

MethodHTTP requestDescription
deleteAclEntryDELETE AclEntryApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the AclEntry.

Return type

Void

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the AclEntry.

Return type

AclEntry

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

AclEntry

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

NameTypeDescriptionNotes
aclEntryAclEntryAclEntry details.

Return type

AclEntry

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

NameTypeDescriptionNotes
idUUIDUnique identifier for the AclEntry.
aclEntryAclEntryUpdated AclEntry details.

Return type

AclEntry

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

Generated Version Details

~value
GENERATOR VERSIONcom.valkyrlabs:ValkyrAI API 1.0-SNAPSHOT
API ARTIFACTcom.valkyrlabs.valkyrai-api.jar
GENERATOR VERSIONorg.openapitools.openapi-generator:7.5.0
GENERATOR CLASSorg.openapitools.codegen.languages.SpringCodegen
GENERATED DATE2025-04-09T20:27:13.881184-07:00[America/Los_Angeles]