2121)
2222from ._utils import is_given , get_async_library
2323from ._version import __version__
24- from .resources import secrets , blueprints , repositories
24+ from .resources import objects , secrets , blueprints , repositories
2525from ._streaming import Stream as Stream , AsyncStream as AsyncStream
2626from ._exceptions import RunloopError , APIStatusError
2727from ._base_client import (
@@ -41,6 +41,7 @@ class Runloop(SyncAPIClient):
4141 blueprints : blueprints .BlueprintsResource
4242 devboxes : devboxes .DevboxesResource
4343 scenarios : scenarios .ScenariosResource
44+ objects : objects .ObjectsResource
4445 repositories : repositories .RepositoriesResource
4546 secrets : secrets .SecretsResource
4647 with_raw_response : RunloopWithRawResponse
@@ -106,6 +107,7 @@ def __init__(
106107 self .blueprints = blueprints .BlueprintsResource (self )
107108 self .devboxes = devboxes .DevboxesResource (self )
108109 self .scenarios = scenarios .ScenariosResource (self )
110+ self .objects = objects .ObjectsResource (self )
109111 self .repositories = repositories .RepositoriesResource (self )
110112 self .secrets = secrets .SecretsResource (self )
111113 self .with_raw_response = RunloopWithRawResponse (self )
@@ -221,6 +223,7 @@ class AsyncRunloop(AsyncAPIClient):
221223 blueprints : blueprints .AsyncBlueprintsResource
222224 devboxes : devboxes .AsyncDevboxesResource
223225 scenarios : scenarios .AsyncScenariosResource
226+ objects : objects .AsyncObjectsResource
224227 repositories : repositories .AsyncRepositoriesResource
225228 secrets : secrets .AsyncSecretsResource
226229 with_raw_response : AsyncRunloopWithRawResponse
@@ -286,6 +289,7 @@ def __init__(
286289 self .blueprints = blueprints .AsyncBlueprintsResource (self )
287290 self .devboxes = devboxes .AsyncDevboxesResource (self )
288291 self .scenarios = scenarios .AsyncScenariosResource (self )
292+ self .objects = objects .AsyncObjectsResource (self )
289293 self .repositories = repositories .AsyncRepositoriesResource (self )
290294 self .secrets = secrets .AsyncSecretsResource (self )
291295 self .with_raw_response = AsyncRunloopWithRawResponse (self )
@@ -402,6 +406,7 @@ def __init__(self, client: Runloop) -> None:
402406 self .blueprints = blueprints .BlueprintsResourceWithRawResponse (client .blueprints )
403407 self .devboxes = devboxes .DevboxesResourceWithRawResponse (client .devboxes )
404408 self .scenarios = scenarios .ScenariosResourceWithRawResponse (client .scenarios )
409+ self .objects = objects .ObjectsResourceWithRawResponse (client .objects )
405410 self .repositories = repositories .RepositoriesResourceWithRawResponse (client .repositories )
406411 self .secrets = secrets .SecretsResourceWithRawResponse (client .secrets )
407412
@@ -412,6 +417,7 @@ def __init__(self, client: AsyncRunloop) -> None:
412417 self .blueprints = blueprints .AsyncBlueprintsResourceWithRawResponse (client .blueprints )
413418 self .devboxes = devboxes .AsyncDevboxesResourceWithRawResponse (client .devboxes )
414419 self .scenarios = scenarios .AsyncScenariosResourceWithRawResponse (client .scenarios )
420+ self .objects = objects .AsyncObjectsResourceWithRawResponse (client .objects )
415421 self .repositories = repositories .AsyncRepositoriesResourceWithRawResponse (client .repositories )
416422 self .secrets = secrets .AsyncSecretsResourceWithRawResponse (client .secrets )
417423
@@ -422,6 +428,7 @@ def __init__(self, client: Runloop) -> None:
422428 self .blueprints = blueprints .BlueprintsResourceWithStreamingResponse (client .blueprints )
423429 self .devboxes = devboxes .DevboxesResourceWithStreamingResponse (client .devboxes )
424430 self .scenarios = scenarios .ScenariosResourceWithStreamingResponse (client .scenarios )
431+ self .objects = objects .ObjectsResourceWithStreamingResponse (client .objects )
425432 self .repositories = repositories .RepositoriesResourceWithStreamingResponse (client .repositories )
426433 self .secrets = secrets .SecretsResourceWithStreamingResponse (client .secrets )
427434
@@ -432,6 +439,7 @@ def __init__(self, client: AsyncRunloop) -> None:
432439 self .blueprints = blueprints .AsyncBlueprintsResourceWithStreamingResponse (client .blueprints )
433440 self .devboxes = devboxes .AsyncDevboxesResourceWithStreamingResponse (client .devboxes )
434441 self .scenarios = scenarios .AsyncScenariosResourceWithStreamingResponse (client .scenarios )
442+ self .objects = objects .AsyncObjectsResourceWithStreamingResponse (client .objects )
435443 self .repositories = repositories .AsyncRepositoriesResourceWithStreamingResponse (client .repositories )
436444 self .secrets = secrets .AsyncSecretsResourceWithStreamingResponse (client .secrets )
437445
0 commit comments