OpenClawLightsailLaunchEstimateApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| deleteOpenClawLightsailLaunchEstimate | DELETE OpenClawLightsailLaunchEstimateApi | Delete a OpenClawLightsailLaunchEstimate. |
deleteOpenClawLightsailLaunchEstimate
Void
deleteOpenClawLightsailLaunchEstimate(id)
Delete a OpenClawLightsailLaunchEstimate.
Deletes a specific OpenClawLightsailLaunchEstimate.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.OpenClawLightsailLaunchEstimateApi;
OpenClawLightsailLaunchEstimateApi apiInstance = new OpenClawLightsailLaunchEstimateApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the OpenClawLightsailLaunchEstimate.
try {
Void result = apiInstance.deleteOpenClawLightsailLaunchEstimate(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchEstimateApi#deleteOpenClawLightsailLaunchEstimate");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the OpenClawLightsailLaunchEstimate. |
Return type
Void
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getOpenClawLightsailLaunchEstimate
OpenClawLightsailLaunchEstimate
getOpenClawLightsailLaunchEstimate(id)
Retrieve a single OpenClawLightsailLaunchEstimate
Retrieves a single OpenClawLightsailLaunchEstimate for a specific uid.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.OpenClawLightsailLaunchEstimateApi;
OpenClawLightsailLaunchEstimateApi apiInstance = new OpenClawLightsailLaunchEstimateApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the OpenClawLightsailLaunchEstimate.
try {
OpenClawLightsailLaunchEstimate result = apiInstance.getOpenClawLightsailLaunchEstimate(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchEstimateApi#getOpenClawLightsailLaunchEstimate");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the OpenClawLightsailLaunchEstimate. |
Return type
OpenClawLightsailLaunchEstimate
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
getOpenClawLightsailLaunchEstimateList
OpenClawLightsailLaunchEstimate
getOpenClawLightsailLaunchEstimateList(pagesizesort)
Retrieve a list of OpenClawLightsailLaunchEstimates
Retrieves a list of OpenClawLightsailLaunchEstimates.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.OpenClawLightsailLaunchEstimateApi;
OpenClawLightsailLaunchEstimateApi apiInstance = new OpenClawLightsailLaunchEstimateApi();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |
try {
OpenClawLightsailLaunchEstimate result = apiInstance.getOpenClawLightsailLaunchEstimateList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchEstimateApi#getOpenClawLightsailLaunchEstimateList");
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
OpenClawLightsailLaunchEstimate
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
patchOpenClawLightsailLaunchEstimateById
OpenClawLightsailLaunchEstimate
patchOpenClawLightsailLaunchEstimateById(idopenClawLightsailLaunchEstimate)
Partially update an existing OpenClawLightsailLaunchEstimate
Updates an existing OpenClawLightsailLaunchEstimate.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.OpenClawLightsailLaunchEstimateApi;
OpenClawLightsailLaunchEstimateApi apiInstance = new OpenClawLightsailLaunchEstimateApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the OpenClawLightsailLaunchEstimate.
OpenClawLightsailLaunchEstimate openClawLightsailLaunchEstimate = new OpenClawLightsailLaunchEstimate(); // OpenClawLightsailLaunchEstimate | Merge-patch fields for OpenClawLightsailLaunchEstimate.
try {
OpenClawLightsailLaunchEstimate result = apiInstance.patchOpenClawLightsailLaunchEstimateById(idopenClawLightsailLaunchEstimate);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchEstimateApi#patchOpenClawLightsailLaunchEstimateById");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the OpenClawLightsailLaunchEstimate. | |
| openClawLightsailLaunchEstimate | OpenClawLightsailLaunchEstimate | Merge-patch fields for OpenClawLightsailLaunchEstimate. |
Return type
OpenClawLightsailLaunchEstimate
Authorization
No authorization required
HTTP request headers
- Content-Type: application/merge-patch+jsonapplication/json-patch+jsonapplication/json
- Accept: application/json
postOpenClawLightsailLaunchEstimate
OpenClawLightsailLaunchEstimate
postOpenClawLightsailLaunchEstimate(openClawLightsailLaunchEstimate)
Create a new OpenClawLightsailLaunchEstimate
Creates a new OpenClawLightsailLaunchEstimate.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.OpenClawLightsailLaunchEstimateApi;
OpenClawLightsailLaunchEstimateApi apiInstance = new OpenClawLightsailLaunchEstimateApi();
OpenClawLightsailLaunchEstimate openClawLightsailLaunchEstimate = new OpenClawLightsailLaunchEstimate(); // OpenClawLightsailLaunchEstimate | OpenClawLightsailLaunchEstimate details.
try {
OpenClawLightsailLaunchEstimate result = apiInstance.postOpenClawLightsailLaunchEstimate(openClawLightsailLaunchEstimate);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchEstimateApi#postOpenClawLightsailLaunchEstimate");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| openClawLightsailLaunchEstimate | OpenClawLightsailLaunchEstimate | OpenClawLightsailLaunchEstimate details. |
Return type
OpenClawLightsailLaunchEstimate
Authorization
No authorization required
HTTP request headers
- Content-Type: application/json
- Accept: application/json
updateOpenClawLightsailLaunchEstimate
OpenClawLightsailLaunchEstimate
updateOpenClawLightsailLaunchEstimate(idopenClawLightsailLaunchEstimate)
Update an existing OpenClawLightsailLaunchEstimate
Updates an existing OpenClawLightsailLaunchEstimate.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.OpenClawLightsailLaunchEstimateApi;
OpenClawLightsailLaunchEstimateApi apiInstance = new OpenClawLightsailLaunchEstimateApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the OpenClawLightsailLaunchEstimate.
OpenClawLightsailLaunchEstimate openClawLightsailLaunchEstimate = new OpenClawLightsailLaunchEstimate(); // OpenClawLightsailLaunchEstimate | Updated OpenClawLightsailLaunchEstimate details.
try {
OpenClawLightsailLaunchEstimate result = apiInstance.updateOpenClawLightsailLaunchEstimate(idopenClawLightsailLaunchEstimate);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchEstimateApi#updateOpenClawLightsailLaunchEstimate");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the OpenClawLightsailLaunchEstimate. | |
| openClawLightsailLaunchEstimate | OpenClawLightsailLaunchEstimate | Updated OpenClawLightsailLaunchEstimate details. |
Return type
OpenClawLightsailLaunchEstimate
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.3-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 | 2026-05-16T11:45:23.900207-07:00[America/Los_Angeles] |