|
39 | 39 | scenarios, |
40 | 40 | benchmarks, |
41 | 41 | blueprints, |
| 42 | + mcp_configs, |
42 | 43 | repositories, |
43 | 44 | benchmark_jobs, |
44 | 45 | benchmark_runs, |
|
50 | 51 | from .resources.secrets import SecretsResource, AsyncSecretsResource |
51 | 52 | from .resources.benchmarks import BenchmarksResource, AsyncBenchmarksResource |
52 | 53 | from .resources.blueprints import BlueprintsResource, AsyncBlueprintsResource |
| 54 | + from .resources.mcp_configs import McpConfigsResource, AsyncMcpConfigsResource |
53 | 55 | from .resources.repositories import RepositoriesResource, AsyncRepositoriesResource |
54 | 56 | from .resources.benchmark_jobs import BenchmarkJobsResource, AsyncBenchmarkJobsResource |
55 | 57 | from .resources.benchmark_runs import BenchmarkRunsResource, AsyncBenchmarkRunsResource |
@@ -190,6 +192,12 @@ def gateway_configs(self) -> GatewayConfigsResource: |
190 | 192 |
|
191 | 193 | return GatewayConfigsResource(self) |
192 | 194 |
|
| 195 | + @cached_property |
| 196 | + def mcp_configs(self) -> McpConfigsResource: |
| 197 | + from .resources.mcp_configs import McpConfigsResource |
| 198 | + |
| 199 | + return McpConfigsResource(self) |
| 200 | + |
193 | 201 | @cached_property |
194 | 202 | def with_raw_response(self) -> RunloopWithRawResponse: |
195 | 203 | return RunloopWithRawResponse(self) |
@@ -432,6 +440,12 @@ def gateway_configs(self) -> AsyncGatewayConfigsResource: |
432 | 440 |
|
433 | 441 | return AsyncGatewayConfigsResource(self) |
434 | 442 |
|
| 443 | + @cached_property |
| 444 | + def mcp_configs(self) -> AsyncMcpConfigsResource: |
| 445 | + from .resources.mcp_configs import AsyncMcpConfigsResource |
| 446 | + |
| 447 | + return AsyncMcpConfigsResource(self) |
| 448 | + |
435 | 449 | @cached_property |
436 | 450 | def with_raw_response(self) -> AsyncRunloopWithRawResponse: |
437 | 451 | return AsyncRunloopWithRawResponse(self) |
@@ -623,6 +637,12 @@ def gateway_configs(self) -> gateway_configs.GatewayConfigsResourceWithRawRespon |
623 | 637 |
|
624 | 638 | return GatewayConfigsResourceWithRawResponse(self._client.gateway_configs) |
625 | 639 |
|
| 640 | + @cached_property |
| 641 | + def mcp_configs(self) -> mcp_configs.McpConfigsResourceWithRawResponse: |
| 642 | + from .resources.mcp_configs import McpConfigsResourceWithRawResponse |
| 643 | + |
| 644 | + return McpConfigsResourceWithRawResponse(self._client.mcp_configs) |
| 645 | + |
626 | 646 |
|
627 | 647 | class AsyncRunloopWithRawResponse: |
628 | 648 | _client: AsyncRunloop |
@@ -702,6 +722,12 @@ def gateway_configs(self) -> gateway_configs.AsyncGatewayConfigsResourceWithRawR |
702 | 722 |
|
703 | 723 | return AsyncGatewayConfigsResourceWithRawResponse(self._client.gateway_configs) |
704 | 724 |
|
| 725 | + @cached_property |
| 726 | + def mcp_configs(self) -> mcp_configs.AsyncMcpConfigsResourceWithRawResponse: |
| 727 | + from .resources.mcp_configs import AsyncMcpConfigsResourceWithRawResponse |
| 728 | + |
| 729 | + return AsyncMcpConfigsResourceWithRawResponse(self._client.mcp_configs) |
| 730 | + |
705 | 731 |
|
706 | 732 | class RunloopWithStreamedResponse: |
707 | 733 | _client: Runloop |
@@ -781,6 +807,12 @@ def gateway_configs(self) -> gateway_configs.GatewayConfigsResourceWithStreaming |
781 | 807 |
|
782 | 808 | return GatewayConfigsResourceWithStreamingResponse(self._client.gateway_configs) |
783 | 809 |
|
| 810 | + @cached_property |
| 811 | + def mcp_configs(self) -> mcp_configs.McpConfigsResourceWithStreamingResponse: |
| 812 | + from .resources.mcp_configs import McpConfigsResourceWithStreamingResponse |
| 813 | + |
| 814 | + return McpConfigsResourceWithStreamingResponse(self._client.mcp_configs) |
| 815 | + |
784 | 816 |
|
785 | 817 | class AsyncRunloopWithStreamedResponse: |
786 | 818 | _client: AsyncRunloop |
@@ -860,6 +892,12 @@ def gateway_configs(self) -> gateway_configs.AsyncGatewayConfigsResourceWithStre |
860 | 892 |
|
861 | 893 | return AsyncGatewayConfigsResourceWithStreamingResponse(self._client.gateway_configs) |
862 | 894 |
|
| 895 | + @cached_property |
| 896 | + def mcp_configs(self) -> mcp_configs.AsyncMcpConfigsResourceWithStreamingResponse: |
| 897 | + from .resources.mcp_configs import AsyncMcpConfigsResourceWithStreamingResponse |
| 898 | + |
| 899 | + return AsyncMcpConfigsResourceWithStreamingResponse(self._client.mcp_configs) |
| 900 | + |
863 | 901 |
|
864 | 902 | Client = Runloop |
865 | 903 |
|
|
0 commit comments