Skip to main content

OpenClawLightsailLaunchEstimateApi

valkyrai-api

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

MethodHTTP requestDescription
deleteOpenClawLightsailLaunchEstimateDELETE OpenClawLightsailLaunchEstimateApiDelete 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

NameTypeDescriptionNotes
idUUIDUnique 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

NameTypeDescriptionNotes
idUUIDUnique 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

NameTypeDescriptionNotes
pageInteger[optional] [default to 0]
sizeInteger[optional] [default to 20]
sortList<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

NameTypeDescriptionNotes
idUUIDUnique identifier for the OpenClawLightsailLaunchEstimate.
openClawLightsailLaunchEstimateOpenClawLightsailLaunchEstimateMerge-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

NameTypeDescriptionNotes
openClawLightsailLaunchEstimateOpenClawLightsailLaunchEstimateOpenClawLightsailLaunchEstimate 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

NameTypeDescriptionNotes
idUUIDUnique identifier for the OpenClawLightsailLaunchEstimate.
openClawLightsailLaunchEstimateOpenClawLightsailLaunchEstimateUpdated OpenClawLightsailLaunchEstimate details.

Return type

OpenClawLightsailLaunchEstimate

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.3-SNAPSHOT
API ARTIFACTcom.valkyrlabs.valkyrai-api.jar
GENERATOR VERSIONorg.openapitools.openapi-generator:7.5.0
GENERATOR CLASSorg.openapitools.codegen.languages.SpringCodegen
GENERATED DATE2026-05-16T11:45:23.900207-07:00[America/Los_Angeles]