Skip to main content

AclObjectIdentityApi

valkyrai-api

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

MethodHTTP requestDescription
deleteAclObjectIdentityDELETE AclObjectIdentityApiDelete a AclObjectIdentity.

deleteAclObjectIdentity

Void
deleteAclObjectIdentity(id)

Delete a AclObjectIdentity.

Deletes a specific AclObjectIdentity.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclObjectIdentityApi;


AclObjectIdentityApi apiInstance = new AclObjectIdentityApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the AclObjectIdentity.

try {
Void result = apiInstance.deleteAclObjectIdentity(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclObjectIdentityApi#deleteAclObjectIdentity");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the AclObjectIdentity.

Return type

Void

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

getAclObjectIdentity

AclObjectIdentity
getAclObjectIdentity(id)

Retrieve a single AclObjectIdentity

Retrieves a single AclObjectIdentity for a specific uid.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclObjectIdentityApi;


AclObjectIdentityApi apiInstance = new AclObjectIdentityApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the AclObjectIdentity.

try {
AclObjectIdentity result = apiInstance.getAclObjectIdentity(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclObjectIdentityApi#getAclObjectIdentity");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the AclObjectIdentity.

Return type

AclObjectIdentity

Authorization

No authorization required

HTTP request headers

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

getAclObjectIdentityList

AclObjectIdentity
getAclObjectIdentityList()

Retrieve a list of AclObjectIdentitys

Retrieves a list of AclObjectIdentitys.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclObjectIdentityApi;


AclObjectIdentityApi apiInstance = new AclObjectIdentityApi();

try {
AclObjectIdentity result = apiInstance.getAclObjectIdentityList();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclObjectIdentityApi#getAclObjectIdentityList");
e.printStackTrace();
}

Parameters

This endpoint does not need any parameter.

Return type

AclObjectIdentity

Authorization

No authorization required

HTTP request headers

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

postAclObjectIdentity

AclObjectIdentity
postAclObjectIdentity(aclObjectIdentity)

Create a new AclObjectIdentity

Creates a new AclObjectIdentity.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclObjectIdentityApi;


AclObjectIdentityApi apiInstance = new AclObjectIdentityApi();
AclObjectIdentity aclObjectIdentity = new AclObjectIdentity(); // AclObjectIdentity | AclObjectIdentity details.

try {
AclObjectIdentity result = apiInstance.postAclObjectIdentity(aclObjectIdentity);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclObjectIdentityApi#postAclObjectIdentity");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
aclObjectIdentityAclObjectIdentityAclObjectIdentity details.

Return type

AclObjectIdentity

Authorization

No authorization required

HTTP request headers

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

updateAclObjectIdentity

AclObjectIdentity
updateAclObjectIdentity(idaclObjectIdentity)

Update an existing AclObjectIdentity

Updates an existing AclObjectIdentity.

Example

Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AclObjectIdentityApi;


AclObjectIdentityApi apiInstance = new AclObjectIdentityApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the AclObjectIdentity.
AclObjectIdentity aclObjectIdentity = new AclObjectIdentity(); // AclObjectIdentity | Updated AclObjectIdentity details.

try {
AclObjectIdentity result = apiInstance.updateAclObjectIdentity(idaclObjectIdentity);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AclObjectIdentityApi#updateAclObjectIdentity");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the AclObjectIdentity.
aclObjectIdentityAclObjectIdentityUpdated AclObjectIdentity details.

Return type

AclObjectIdentity

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.0-SNAPSHOT
API ARTIFACTcom.valkyrlabs.valkyrai-api.jar
GENERATOR VERSIONorg.openapitools.openapi-generator:7.5.0
GENERATOR CLASSorg.openapitools.codegen.languages.SpringCodegen
GENERATED DATE2025-08-19T08:16:16.222259-07:00[America/Los_Angeles]