2121)
2222from ._utils import is_given , get_async_library
2323from ._version import __version__
24- from .resources import apps , deployments , invocations
24+ from .resources import apps , profiles , deployments , invocations
2525from ._streaming import Stream as Stream , AsyncStream as AsyncStream
2626from ._exceptions import KernelError , APIStatusError
2727from ._base_client import (
@@ -54,6 +54,7 @@ class Kernel(SyncAPIClient):
5454 apps : apps .AppsResource
5555 invocations : invocations .InvocationsResource
5656 browsers : browsers .BrowsersResource
57+ profiles : profiles .ProfilesResource
5758 with_raw_response : KernelWithRawResponse
5859 with_streaming_response : KernelWithStreamedResponse
5960
@@ -139,6 +140,7 @@ def __init__(
139140 self .apps = apps .AppsResource (self )
140141 self .invocations = invocations .InvocationsResource (self )
141142 self .browsers = browsers .BrowsersResource (self )
143+ self .profiles = profiles .ProfilesResource (self )
142144 self .with_raw_response = KernelWithRawResponse (self )
143145 self .with_streaming_response = KernelWithStreamedResponse (self )
144146
@@ -254,6 +256,7 @@ class AsyncKernel(AsyncAPIClient):
254256 apps : apps .AsyncAppsResource
255257 invocations : invocations .AsyncInvocationsResource
256258 browsers : browsers .AsyncBrowsersResource
259+ profiles : profiles .AsyncProfilesResource
257260 with_raw_response : AsyncKernelWithRawResponse
258261 with_streaming_response : AsyncKernelWithStreamedResponse
259262
@@ -339,6 +342,7 @@ def __init__(
339342 self .apps = apps .AsyncAppsResource (self )
340343 self .invocations = invocations .AsyncInvocationsResource (self )
341344 self .browsers = browsers .AsyncBrowsersResource (self )
345+ self .profiles = profiles .AsyncProfilesResource (self )
342346 self .with_raw_response = AsyncKernelWithRawResponse (self )
343347 self .with_streaming_response = AsyncKernelWithStreamedResponse (self )
344348
@@ -455,6 +459,7 @@ def __init__(self, client: Kernel) -> None:
455459 self .apps = apps .AppsResourceWithRawResponse (client .apps )
456460 self .invocations = invocations .InvocationsResourceWithRawResponse (client .invocations )
457461 self .browsers = browsers .BrowsersResourceWithRawResponse (client .browsers )
462+ self .profiles = profiles .ProfilesResourceWithRawResponse (client .profiles )
458463
459464
460465class AsyncKernelWithRawResponse :
@@ -463,6 +468,7 @@ def __init__(self, client: AsyncKernel) -> None:
463468 self .apps = apps .AsyncAppsResourceWithRawResponse (client .apps )
464469 self .invocations = invocations .AsyncInvocationsResourceWithRawResponse (client .invocations )
465470 self .browsers = browsers .AsyncBrowsersResourceWithRawResponse (client .browsers )
471+ self .profiles = profiles .AsyncProfilesResourceWithRawResponse (client .profiles )
466472
467473
468474class KernelWithStreamedResponse :
@@ -471,6 +477,7 @@ def __init__(self, client: Kernel) -> None:
471477 self .apps = apps .AppsResourceWithStreamingResponse (client .apps )
472478 self .invocations = invocations .InvocationsResourceWithStreamingResponse (client .invocations )
473479 self .browsers = browsers .BrowsersResourceWithStreamingResponse (client .browsers )
480+ self .profiles = profiles .ProfilesResourceWithStreamingResponse (client .profiles )
474481
475482
476483class AsyncKernelWithStreamedResponse :
@@ -479,6 +486,7 @@ def __init__(self, client: AsyncKernel) -> None:
479486 self .apps = apps .AsyncAppsResourceWithStreamingResponse (client .apps )
480487 self .invocations = invocations .AsyncInvocationsResourceWithStreamingResponse (client .invocations )
481488 self .browsers = browsers .AsyncBrowsersResourceWithStreamingResponse (client .browsers )
489+ self .profiles = profiles .AsyncProfilesResourceWithStreamingResponse (client .profiles )
482490
483491
484492Client = Kernel
0 commit comments