AclObjectIdentityApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| deleteAclObjectIdentity | DELETE AclObjectIdentityApi | Delete 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
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the AclObjectIdentity. |
Return type
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
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the AclObjectIdentity. |
Return type
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
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
| Name | Type | Description | Notes |
|---|---|---|---|
| aclObjectIdentity | AclObjectIdentity | AclObjectIdentity details. |
Return type
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
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the AclObjectIdentity. | |
| aclObjectIdentity | AclObjectIdentity | Updated AclObjectIdentity 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.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-08-19T08:16:16.222259-07:00[America/Los_Angeles] |