Skip to main content

OpenClawLightsailLaunchResponseApi

valkyrai-api

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

MethodHTTP requestDescription
deleteOpenClawLightsailLaunchResponseDELETE OpenClawLightsailLaunchResponseApiDelete a OpenClawLightsailLaunchResponse.

deleteOpenClawLightsailLaunchResponse

Void
deleteOpenClawLightsailLaunchResponse(id)

Delete a OpenClawLightsailLaunchResponse.

Deletes a specific OpenClawLightsailLaunchResponse.

Example

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


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

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

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the OpenClawLightsailLaunchResponse.

Return type

Void

Authorization

No authorization required

HTTP request headers

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

getOpenClawLightsailLaunchResponse

OpenClawLightsailLaunchResponse
getOpenClawLightsailLaunchResponse(id)

Retrieve a single OpenClawLightsailLaunchResponse

Retrieves a single OpenClawLightsailLaunchResponse for a specific uid.

Example

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


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

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

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the OpenClawLightsailLaunchResponse.

Return type

OpenClawLightsailLaunchResponse

Authorization

No authorization required

HTTP request headers

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

getOpenClawLightsailLaunchResponseList

OpenClawLightsailLaunchResponse
getOpenClawLightsailLaunchResponseList(pagesizesort)

Retrieve a list of OpenClawLightsailLaunchResponses

Retrieves a list of OpenClawLightsailLaunchResponses.

Example

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


OpenClawLightsailLaunchResponseApi apiInstance = new OpenClawLightsailLaunchResponseApi();
Integer page = 0; // Integer |
Integer size = 20; // Integer |
List<String> sort = Arrays.asList(); // List<String> |

try {
OpenClawLightsailLaunchResponse result = apiInstance.getOpenClawLightsailLaunchResponseList(pagesizesort);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchResponseApi#getOpenClawLightsailLaunchResponseList");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
pageInteger[optional] [default to 0]
sizeInteger[optional] [default to 20]
sortList<String>[optional]

Return type

OpenClawLightsailLaunchResponse

Authorization

No authorization required

HTTP request headers

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

patchOpenClawLightsailLaunchResponseById

OpenClawLightsailLaunchResponse
patchOpenClawLightsailLaunchResponseById(idopenClawLightsailLaunchResponse)

Partially update an existing OpenClawLightsailLaunchResponse

Updates an existing OpenClawLightsailLaunchResponse.

Example

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


OpenClawLightsailLaunchResponseApi apiInstance = new OpenClawLightsailLaunchResponseApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the OpenClawLightsailLaunchResponse.
OpenClawLightsailLaunchResponse openClawLightsailLaunchResponse = new OpenClawLightsailLaunchResponse(); // OpenClawLightsailLaunchResponse | Merge-patch fields for OpenClawLightsailLaunchResponse.

try {
OpenClawLightsailLaunchResponse result = apiInstance.patchOpenClawLightsailLaunchResponseById(idopenClawLightsailLaunchResponse);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchResponseApi#patchOpenClawLightsailLaunchResponseById");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the OpenClawLightsailLaunchResponse.
openClawLightsailLaunchResponseOpenClawLightsailLaunchResponseMerge-patch fields for OpenClawLightsailLaunchResponse.

Return type

OpenClawLightsailLaunchResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/merge-patch+jsonapplication/json-patch+jsonapplication/json
  • Accept: application/json

postOpenClawLightsailLaunchResponse

OpenClawLightsailLaunchResponse
postOpenClawLightsailLaunchResponse(openClawLightsailLaunchResponse)

Create a new OpenClawLightsailLaunchResponse

Creates a new OpenClawLightsailLaunchResponse.

Example

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


OpenClawLightsailLaunchResponseApi apiInstance = new OpenClawLightsailLaunchResponseApi();
OpenClawLightsailLaunchResponse openClawLightsailLaunchResponse = new OpenClawLightsailLaunchResponse(); // OpenClawLightsailLaunchResponse | OpenClawLightsailLaunchResponse details.

try {
OpenClawLightsailLaunchResponse result = apiInstance.postOpenClawLightsailLaunchResponse(openClawLightsailLaunchResponse);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchResponseApi#postOpenClawLightsailLaunchResponse");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
openClawLightsailLaunchResponseOpenClawLightsailLaunchResponseOpenClawLightsailLaunchResponse details.

Return type

OpenClawLightsailLaunchResponse

Authorization

No authorization required

HTTP request headers

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

updateOpenClawLightsailLaunchResponse

OpenClawLightsailLaunchResponse
updateOpenClawLightsailLaunchResponse(idopenClawLightsailLaunchResponse)

Update an existing OpenClawLightsailLaunchResponse

Updates an existing OpenClawLightsailLaunchResponse.

Example

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


OpenClawLightsailLaunchResponseApi apiInstance = new OpenClawLightsailLaunchResponseApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the OpenClawLightsailLaunchResponse.
OpenClawLightsailLaunchResponse openClawLightsailLaunchResponse = new OpenClawLightsailLaunchResponse(); // OpenClawLightsailLaunchResponse | Updated OpenClawLightsailLaunchResponse details.

try {
OpenClawLightsailLaunchResponse result = apiInstance.updateOpenClawLightsailLaunchResponse(idopenClawLightsailLaunchResponse);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling OpenClawLightsailLaunchResponseApi#updateOpenClawLightsailLaunchResponse");
e.printStackTrace();
}

Parameters

NameTypeDescriptionNotes
idUUIDUnique identifier for the OpenClawLightsailLaunchResponse.
openClawLightsailLaunchResponseOpenClawLightsailLaunchResponseUpdated OpenClawLightsailLaunchResponse details.

Return type

OpenClawLightsailLaunchResponse

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]