2121)
2222from ._utils import is_given , get_async_library
2323from ._version import __version__
24- from .resources import apps , profiles , deployments , invocations
24+ from .resources import apps , proxies , profiles , deployments , invocations
2525from ._streaming import Stream as Stream , AsyncStream as AsyncStream
2626from ._exceptions import KernelError , APIStatusError
2727from ._base_client import (
@@ -55,6 +55,7 @@ class Kernel(SyncAPIClient):
5555 invocations : invocations .InvocationsResource
5656 browsers : browsers .BrowsersResource
5757 profiles : profiles .ProfilesResource
58+ proxies : proxies .ProxiesResource
5859 with_raw_response : KernelWithRawResponse
5960 with_streaming_response : KernelWithStreamedResponse
6061
@@ -141,6 +142,7 @@ def __init__(
141142 self .invocations = invocations .InvocationsResource (self )
142143 self .browsers = browsers .BrowsersResource (self )
143144 self .profiles = profiles .ProfilesResource (self )
145+ self .proxies = proxies .ProxiesResource (self )
144146 self .with_raw_response = KernelWithRawResponse (self )
145147 self .with_streaming_response = KernelWithStreamedResponse (self )
146148
@@ -257,6 +259,7 @@ class AsyncKernel(AsyncAPIClient):
257259 invocations : invocations .AsyncInvocationsResource
258260 browsers : browsers .AsyncBrowsersResource
259261 profiles : profiles .AsyncProfilesResource
262+ proxies : proxies .AsyncProxiesResource
260263 with_raw_response : AsyncKernelWithRawResponse
261264 with_streaming_response : AsyncKernelWithStreamedResponse
262265
@@ -343,6 +346,7 @@ def __init__(
343346 self .invocations = invocations .AsyncInvocationsResource (self )
344347 self .browsers = browsers .AsyncBrowsersResource (self )
345348 self .profiles = profiles .AsyncProfilesResource (self )
349+ self .proxies = proxies .AsyncProxiesResource (self )
346350 self .with_raw_response = AsyncKernelWithRawResponse (self )
347351 self .with_streaming_response = AsyncKernelWithStreamedResponse (self )
348352
@@ -460,6 +464,7 @@ def __init__(self, client: Kernel) -> None:
460464 self .invocations = invocations .InvocationsResourceWithRawResponse (client .invocations )
461465 self .browsers = browsers .BrowsersResourceWithRawResponse (client .browsers )
462466 self .profiles = profiles .ProfilesResourceWithRawResponse (client .profiles )
467+ self .proxies = proxies .ProxiesResourceWithRawResponse (client .proxies )
463468
464469
465470class AsyncKernelWithRawResponse :
@@ -469,6 +474,7 @@ def __init__(self, client: AsyncKernel) -> None:
469474 self .invocations = invocations .AsyncInvocationsResourceWithRawResponse (client .invocations )
470475 self .browsers = browsers .AsyncBrowsersResourceWithRawResponse (client .browsers )
471476 self .profiles = profiles .AsyncProfilesResourceWithRawResponse (client .profiles )
477+ self .proxies = proxies .AsyncProxiesResourceWithRawResponse (client .proxies )
472478
473479
474480class KernelWithStreamedResponse :
@@ -478,6 +484,7 @@ def __init__(self, client: Kernel) -> None:
478484 self .invocations = invocations .InvocationsResourceWithStreamingResponse (client .invocations )
479485 self .browsers = browsers .BrowsersResourceWithStreamingResponse (client .browsers )
480486 self .profiles = profiles .ProfilesResourceWithStreamingResponse (client .profiles )
487+ self .proxies = proxies .ProxiesResourceWithStreamingResponse (client .proxies )
481488
482489
483490class AsyncKernelWithStreamedResponse :
@@ -487,6 +494,7 @@ def __init__(self, client: AsyncKernel) -> None:
487494 self .invocations = invocations .AsyncInvocationsResourceWithStreamingResponse (client .invocations )
488495 self .browsers = browsers .AsyncBrowsersResourceWithStreamingResponse (client .browsers )
489496 self .profiles = profiles .AsyncProfilesResourceWithStreamingResponse (client .profiles )
497+ self .proxies = proxies .AsyncProxiesResourceWithStreamingResponse (client .proxies )
490498
491499
492500Client = Kernel
0 commit comments