Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bin/generate-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ def run_command(cmd: str, description: str) -> bool:


def patch_ndjson_handling() -> bool:
"""Add NDJSON handling to execute_cypher_query._parse_response."""
"""Add NDJSON handling to execute_cypher._parse_response."""

file_path = (
Path(__file__).parent.parent
/ "robosystems_client"
/ "api"
/ "query"
/ "execute_cypher_query.py"
/ "execute_cypher.py"
)

if not file_path.exists():
Expand All @@ -55,7 +55,7 @@ def patch_ndjson_handling() -> bool:
"""

# Find the location to insert the patch (raw generated code uses 4 spaces).
# The /v1/graphs/{graph_id}/query endpoint declares `response_model=None`
# The /v1/graphs/{graph_id}/query/cypher endpoint declares `response_model=None`
# (it returns JSONResponse | StreamingResponse | EventSourceResponse depending
# on mode), so the generator emits `response.json()` directly with no typed
# Response200 model.
Expand Down
1 change: 1 addition & 0 deletions robosystems_client/api/content_operations/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Contains endpoint functions for accessing the API"""
260 changes: 260 additions & 0 deletions robosystems_client/api/content_operations/op_create_file_upload.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,260 @@
from http import HTTPStatus
from typing import Any
from urllib.parse import quote

import httpx

from ... import errors
from ...client import AuthenticatedClient, Client
from ...models.error_response import ErrorResponse
from ...models.file_upload_request import FileUploadRequest
from ...models.operation_envelope import OperationEnvelope
from ...types import UNSET, Response, Unset


def _get_kwargs(
graph_id: str,
*,
body: FileUploadRequest,
idempotency_key: None | str | Unset = UNSET,
) -> dict[str, Any]:
headers: dict[str, Any] = {}
if not isinstance(idempotency_key, Unset):
headers["Idempotency-Key"] = idempotency_key

_kwargs: dict[str, Any] = {
"method": "post",
"url": "/v1/graphs/{graph_id}/operations/create-file-upload".format(
graph_id=quote(str(graph_id), safe=""),
),
}

_kwargs["json"] = body.to_dict()

headers["Content-Type"] = "application/json"

_kwargs["headers"] = headers
return _kwargs


def _parse_response(
*, client: AuthenticatedClient | Client, response: httpx.Response
) -> ErrorResponse | OperationEnvelope | None:
if response.status_code == 200:
response_200 = OperationEnvelope.from_dict(response.json())

return response_200

if response.status_code == 400:
response_400 = ErrorResponse.from_dict(response.json())

return response_400

if response.status_code == 401:
response_401 = ErrorResponse.from_dict(response.json())

return response_401

if response.status_code == 403:
response_403 = ErrorResponse.from_dict(response.json())

return response_403

if response.status_code == 404:
response_404 = ErrorResponse.from_dict(response.json())

return response_404

if response.status_code == 409:
response_409 = ErrorResponse.from_dict(response.json())

return response_409

if response.status_code == 422:
response_422 = ErrorResponse.from_dict(response.json())

return response_422

if response.status_code == 429:
response_429 = ErrorResponse.from_dict(response.json())

return response_429

if response.status_code == 500:
response_500 = ErrorResponse.from_dict(response.json())

return response_500

if client.raise_on_unexpected_status:
raise errors.UnexpectedStatus(response.status_code, response.content)
else:
return None


def _build_response(
*, client: AuthenticatedClient | Client, response: httpx.Response
) -> Response[ErrorResponse | OperationEnvelope]:
return Response(
status_code=HTTPStatus(response.status_code),
content=response.content,
headers=response.headers,
parsed=_parse_response(client=client, response=response),
)


def sync_detailed(
graph_id: str,
*,
client: AuthenticatedClient,
body: FileUploadRequest,
idempotency_key: None | str | Unset = UNSET,
) -> Response[ErrorResponse | OperationEnvelope]:
"""Create File Upload (presign an S3 upload)

Presign an S3 URL for direct upload and register the file. After uploading to the returned URL, call
`POST /operations/ingest-file` to stage it into DuckDB. The staging table is auto-created if
missing. Not allowed on entity graphs or shared repositories.

**Idempotency**: supply an `Idempotency-Key` header to make safe retries; replays within 24 hours
return the same envelope. Reusing the key with a different body returns HTTP 409 Conflict.

Args:
graph_id (str):
idempotency_key (None | str | Unset):
body (FileUploadRequest):

Raises:
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:
Response[ErrorResponse | OperationEnvelope]
"""

kwargs = _get_kwargs(
graph_id=graph_id,
body=body,
idempotency_key=idempotency_key,
)

response = client.get_httpx_client().request(
**kwargs,
)

return _build_response(client=client, response=response)


def sync(
graph_id: str,
*,
client: AuthenticatedClient,
body: FileUploadRequest,
idempotency_key: None | str | Unset = UNSET,
) -> ErrorResponse | OperationEnvelope | None:
"""Create File Upload (presign an S3 upload)

Presign an S3 URL for direct upload and register the file. After uploading to the returned URL, call
`POST /operations/ingest-file` to stage it into DuckDB. The staging table is auto-created if
missing. Not allowed on entity graphs or shared repositories.

**Idempotency**: supply an `Idempotency-Key` header to make safe retries; replays within 24 hours
return the same envelope. Reusing the key with a different body returns HTTP 409 Conflict.

Args:
graph_id (str):
idempotency_key (None | str | Unset):
body (FileUploadRequest):

Raises:
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:
ErrorResponse | OperationEnvelope
"""

return sync_detailed(
graph_id=graph_id,
client=client,
body=body,
idempotency_key=idempotency_key,
).parsed


async def asyncio_detailed(
graph_id: str,
*,
client: AuthenticatedClient,
body: FileUploadRequest,
idempotency_key: None | str | Unset = UNSET,
) -> Response[ErrorResponse | OperationEnvelope]:
"""Create File Upload (presign an S3 upload)

Presign an S3 URL for direct upload and register the file. After uploading to the returned URL, call
`POST /operations/ingest-file` to stage it into DuckDB. The staging table is auto-created if
missing. Not allowed on entity graphs or shared repositories.

**Idempotency**: supply an `Idempotency-Key` header to make safe retries; replays within 24 hours
return the same envelope. Reusing the key with a different body returns HTTP 409 Conflict.

Args:
graph_id (str):
idempotency_key (None | str | Unset):
body (FileUploadRequest):

Raises:
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:
Response[ErrorResponse | OperationEnvelope]
"""

kwargs = _get_kwargs(
graph_id=graph_id,
body=body,
idempotency_key=idempotency_key,
)

response = await client.get_async_httpx_client().request(**kwargs)

return _build_response(client=client, response=response)


async def asyncio(
graph_id: str,
*,
client: AuthenticatedClient,
body: FileUploadRequest,
idempotency_key: None | str | Unset = UNSET,
) -> ErrorResponse | OperationEnvelope | None:
"""Create File Upload (presign an S3 upload)

Presign an S3 URL for direct upload and register the file. After uploading to the returned URL, call
`POST /operations/ingest-file` to stage it into DuckDB. The staging table is auto-created if
missing. Not allowed on entity graphs or shared repositories.

**Idempotency**: supply an `Idempotency-Key` header to make safe retries; replays within 24 hours
return the same envelope. Reusing the key with a different body returns HTTP 409 Conflict.

Args:
graph_id (str):
idempotency_key (None | str | Unset):
body (FileUploadRequest):

Raises:
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
httpx.TimeoutException: If the request takes longer than Client.timeout.

Returns:
ErrorResponse | OperationEnvelope
"""

return (
await asyncio_detailed(
graph_id=graph_id,
client=client,
body=body,
idempotency_key=idempotency_key,
)
).parsed
Loading
Loading