# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. from __future__ import annotations from typing import Any, cast import httpx from .._types import Body, Query, Headers, NoneType, NotGiven, not_given from .._utils import path_template from .._compat import cached_property from .._resource import SyncAPIResource, AsyncAPIResource from .._response import ( to_raw_response_wrapper, to_streamed_response_wrapper, async_to_raw_response_wrapper, async_to_streamed_response_wrapper, ) from ..lib.polling import ( AwaitableTaskRetrieveResponse, AsyncAwaitableTaskRetrieveResponse, inject_sync_wait_method, inject_async_wait_method, ) from .._base_client import make_request_options __all__ = ["TasksResource", "AsyncTasksResource"] class TasksResource(SyncAPIResource): """Endpoints for managing tasks that have been submitted.""" @cached_property def with_raw_response(self) -> TasksResourceWithRawResponse: """ This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/runwayml/sdk-python#accessing-raw-response-data-eg-headers """ return TasksResourceWithRawResponse(self) @cached_property def with_streaming_response(self) -> TasksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. For more information, see https://www.github.com/runwayml/sdk-python#with_streaming_response """ return TasksResourceWithStreamingResponse(self) def retrieve( self, id: str, *, # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. # The extra values given here take precedence over values defined on the client or passed to this method. extra_headers: Headers | None = None, extra_query: Query | None = None, extra_body: Body | None = None, timeout: float | httpx.Timeout | None | NotGiven = not_given, ) -> AwaitableTaskRetrieveResponse: """Return details about a task. Consumers of this API should not expect updates more frequent than once every five seconds for a given task. Args: extra_headers: Send extra headers extra_query: Add additional query parameters to the request extra_body: Add additional JSON properties to the request timeout: Override the client-level default timeout for this request, in seconds """ if not id: raise ValueError(f"Expected a non-empty value for `id` but received {id!r}") response = self._get( f"/v1/tasks/{id}", options=make_request_options( extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout ), cast_to=cast( Any, AwaitableTaskRetrieveResponse ), # Union types cannot be passed in as arguments in the type system ) return cast(AwaitableTaskRetrieveResponse, inject_sync_wait_method(self._client, response)) def delete( self, id: str, *, # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. # The extra values given here take precedence over values defined on the client or passed to this method. extra_headers: Headers | None = None, extra_query: Query | None = None, extra_body: Body | None = None, timeout: float | httpx.Timeout | None | NotGiven = not_given, ) -> None: """ Tasks that are running, pending, or throttled can be canceled by invoking this method. Invoking this method for other tasks will delete them. The output data associated with a deleted task will be deleted from persistent storage in accordance with our data retention policy. Aborted and deleted tasks will not be able to be fetched again in the future. Args: extra_headers: Send extra headers extra_query: Add additional query parameters to the request extra_body: Add additional JSON properties to the request timeout: Override the client-level default timeout for this request, in seconds """ if not id: raise ValueError(f"Expected a non-empty value for `id` but received {id!r}") extra_headers = {"Accept": "*/*", **(extra_headers or {})} return self._delete( path_template("/v1/tasks/{id}", id=id), options=make_request_options( extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout ), cast_to=NoneType, ) class AsyncTasksResource(AsyncAPIResource): """Endpoints for managing tasks that have been submitted.""" @cached_property def with_raw_response(self) -> AsyncTasksResourceWithRawResponse: """ This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/runwayml/sdk-python#accessing-raw-response-data-eg-headers """ return AsyncTasksResourceWithRawResponse(self) @cached_property def with_streaming_response(self) -> AsyncTasksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. For more information, see https://www.github.com/runwayml/sdk-python#with_streaming_response """ return AsyncTasksResourceWithStreamingResponse(self) async def retrieve( self, id: str, *, # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. # The extra values given here take precedence over values defined on the client or passed to this method. extra_headers: Headers | None = None, extra_query: Query | None = None, extra_body: Body | None = None, timeout: float | httpx.Timeout | None | NotGiven = not_given, ) -> AsyncAwaitableTaskRetrieveResponse: """Return details about a task. Consumers of this API should not expect updates more frequent than once every five seconds for a given task. Args: extra_headers: Send extra headers extra_query: Add additional query parameters to the request extra_body: Add additional JSON properties to the request timeout: Override the client-level default timeout for this request, in seconds """ if not id: raise ValueError(f"Expected a non-empty value for `id` but received {id!r}") response = await self._get( f"/v1/tasks/{id}", options=make_request_options( extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout ), cast_to=cast( Any, AsyncAwaitableTaskRetrieveResponse ), # Union types cannot be passed in as arguments in the type system ) return cast(AsyncAwaitableTaskRetrieveResponse, inject_async_wait_method(self._client, response)) async def delete( self, id: str, *, # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs. # The extra values given here take precedence over values defined on the client or passed to this method. extra_headers: Headers | None = None, extra_query: Query | None = None, extra_body: Body | None = None, timeout: float | httpx.Timeout | None | NotGiven = not_given, ) -> None: """ Tasks that are running, pending, or throttled can be canceled by invoking this method. Invoking this method for other tasks will delete them. The output data associated with a deleted task will be deleted from persistent storage in accordance with our data retention policy. Aborted and deleted tasks will not be able to be fetched again in the future. Args: extra_headers: Send extra headers extra_query: Add additional query parameters to the request extra_body: Add additional JSON properties to the request timeout: Override the client-level default timeout for this request, in seconds """ if not id: raise ValueError(f"Expected a non-empty value for `id` but received {id!r}") extra_headers = {"Accept": "*/*", **(extra_headers or {})} return await self._delete( path_template("/v1/tasks/{id}", id=id), options=make_request_options( extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout ), cast_to=NoneType, ) class TasksResourceWithRawResponse: def __init__(self, tasks: TasksResource) -> None: self._tasks = tasks self.retrieve = to_raw_response_wrapper( tasks.retrieve, ) self.delete = to_raw_response_wrapper( tasks.delete, ) class AsyncTasksResourceWithRawResponse: def __init__(self, tasks: AsyncTasksResource) -> None: self._tasks = tasks self.retrieve = async_to_raw_response_wrapper( tasks.retrieve, ) self.delete = async_to_raw_response_wrapper( tasks.delete, ) class TasksResourceWithStreamingResponse: def __init__(self, tasks: TasksResource) -> None: self._tasks = tasks self.retrieve = to_streamed_response_wrapper( tasks.retrieve, ) self.delete = to_streamed_response_wrapper( tasks.delete, ) class AsyncTasksResourceWithStreamingResponse: def __init__(self, tasks: AsyncTasksResource) -> None: self._tasks = tasks self.retrieve = async_to_streamed_response_wrapper( tasks.retrieve, ) self.delete = async_to_streamed_response_wrapper( tasks.delete, )