runloop_api_client 1.27.0__tar.gz → 1.29.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- runloop_api_client-1.29.0/.release-please-manifest.json +3 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/CHANGELOG.md +28 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/PKG-INFO +1 -1
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/api.md +3 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/pyproject.toml +1 -1
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_version.py +1 -1
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/axons/axons.py +92 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/devboxes.py +28 -20
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/gateway_configs.py +31 -9
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/mcp_configs.py +43 -1
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/__init__.py +2 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_view.py +1 -1
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_update_params.py +8 -2
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_view.py +3 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/gateway_config_create_params.py +10 -14
- runloop_api_client-1.29.0/src/runloop_api_client/types/gateway_config_update_params.py +35 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/gateway_config_view.py +11 -12
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_create_params.py +15 -1
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_update_params.py +16 -1
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_view.py +12 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/__init__.py +2 -0
- runloop_api_client-1.29.0/src/runloop_api_client/types/shared/auth_mechanism.py +25 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/broker_mount.py +5 -3
- runloop_api_client-1.29.0/src/runloop_api_client/types/shared/custom_header.py +29 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/__init__.py +2 -0
- runloop_api_client-1.29.0/src/runloop_api_client/types/shared_params/auth_mechanism.py +26 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/broker_mount.py +5 -3
- runloop_api_client-1.29.0/src/runloop_api_client/types/shared_params/custom_header.py +30 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_axons.py +76 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_gateway_configs.py +28 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_mcp_configs.py +44 -0
- runloop_api_client-1.27.0/.release-please-manifest.json +0 -3
- runloop_api_client-1.27.0/src/runloop_api_client/types/gateway_config_update_params.py +0 -37
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/.gitignore +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/AGENTS.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/CLAUDE.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/CONTRIBUTING.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/EXAMPLES.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/LICENSE +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/README-SDK.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/README.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/SECURITY.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/bin/check-release-environment +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/bin/publish-pypi +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/_harness.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/blueprint_with_build_context.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/devbox_from_blueprint_lifecycle.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/devbox_snapshot_resume.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/devbox_snapshots.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/devbox_tunnel.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/example_types.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/mcp_github_tools.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/registry.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/examples/secrets_with_devbox.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/release-please-config.json +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/requirements-dev.lock +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop/lib/.keep +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_base_client.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_client.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_compat.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_constants.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_exceptions.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_files.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_models.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_qs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_resource.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_response.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_streaming.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_types.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_compat.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_datetime_parse.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_json.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_logs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_path.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_proxy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_reflection.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_resources_proxy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_streams.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_sync.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_transform.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_typing.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_utils.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_validation.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/.keep +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/_ignore.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/context_loader.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/polling.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/polling_async.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/wait_for_status.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/pagination.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/py.typed +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/accounts.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/agents.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/apikeys.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/axons/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/axons/events.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/axons/sql.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/benchmark_jobs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/benchmark_runs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/benchmarks.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/blueprints.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/disk_snapshots.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/executions.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/logs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/network_policies.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/objects.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/pty.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/restricted_keys.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/scenarios/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/scenarios/runs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/scenarios/scenarios.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/scenarios/scorers.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/secrets.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/_helpers.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/_types.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/agent.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_agent.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_axon.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_benchmark.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_benchmark_run.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_blueprint.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_devbox.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_execution.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_execution_result.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_gateway_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_mcp_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_network_policy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_scenario.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_scenario_builder.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_scenario_run.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_scorer.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_secret.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_snapshot.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_storage_object.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/axon.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/benchmark.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/benchmark_run.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/blueprint.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/devbox.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/execution.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/execution_result.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/gateway_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/mcp_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/network_policy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/scenario.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/scenario_builder.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/scenario_run.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/scorer.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/secret.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/snapshot.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/storage_object.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/sync.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/account_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_devbox_counts_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_list_public_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/allowed_cidr.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/allowed_cidr_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/api_key_created_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/apikey_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_event_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_publish_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_subscribe_sse_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/axon_event_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/event_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_batch_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_batch_result_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_column_meta_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_query_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_query_result_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_result_meta_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_statement_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_step_error_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_step_result_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_definitions_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_job_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_job_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_job_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_job_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_list_public_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_run_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_run_list_scenario_runs_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_run_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_run_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_start_run_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_update_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_update_scenarios_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_build_log.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_build_logs_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_build_parameters.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_list_public_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_preview_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_preview_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_async_execution_detail_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_create_ssh_key_response.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_download_file_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_enable_tunnel_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_eviction_event_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_execute_async_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_execute_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_execute_sync_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_execution_detail_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_list_disk_snapshots_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_read_file_contents_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_read_file_contents_response.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_resource_usage_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_send_std_in_result.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_shutdown_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_snapshot_disk_async_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_snapshot_disk_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_snapshot_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_snapshot_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_upload_file_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_wait_for_command_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_write_file_contents_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/devbox_logs_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/devbox_snapshot_async_status_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/disk_snapshot_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/disk_snapshot_update_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_execute_async_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_execute_sync_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_kill_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_retrieve_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_send_std_in_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_stream_stderr_updates_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_stream_stdout_updates_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_update_chunk.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/log_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/gateway_config_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/gateway_config_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/input_context.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/input_context_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/input_context_update_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_update_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_download_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_download_url_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_list_public_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/port_rule.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/port_rule_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_connect_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_connect_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_control_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_control_result_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_tunnel_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/publish_result_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/restricted_key_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/restricted_key_created_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_definition_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_environment.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_environment_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_list_public_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_run_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_run_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_start_run_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_update_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/run_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_create_response.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_list_response.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_retrieve_response.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_update_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_update_response.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scope_entry_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scope_entry_view_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_contract.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_contract_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_contract_result_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_contract_update_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_function.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_function_param.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_function_result_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_create_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_list_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_list_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_update_params.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/after_idle.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/agent_mount.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/agent_source.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/code_mount_parameters.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/launch_parameters.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/lifecycle_configuration.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/lifecycle_hooks.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/mount.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/object_mount.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/resume_triggers.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/run_profile.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/after_idle.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/agent_mount.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/agent_source.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/code_mount_parameters.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/launch_parameters.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/lifecycle_configuration.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/lifecycle_hooks.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/mount.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/object_mount.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/resume_triggers.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/run_profile.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/tunnel_view.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/axons/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/axons/test_events.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/axons/test_sql.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/devboxes/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/devboxes/test_disk_snapshots.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/devboxes/test_executions.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/devboxes/test_logs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/scenarios/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/scenarios/test_runs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/scenarios/test_scorers.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_accounts.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_agents.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_apikeys.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_benchmark_jobs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_benchmark_runs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_benchmarks.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_blueprints.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_devboxes.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_network_policies.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_objects.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_pty.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_restricted_keys.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_scenarios.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/api_resources/test_secrets.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/conftest.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sample_file.txt +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/conftest.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/test_core.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/test_edge_cases.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/test_interfaces.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/test_streaming.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/conftest.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/conftest.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/test_core.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/test_edge_cases.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/test_interfaces.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/test_streaming.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_agent.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_agent.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_axon.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_benchmark.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_benchmark_run.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_blueprint.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_execution.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_execution_result.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_gateway_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_network_policy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_ops.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_scenario.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_scenario_builder.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_scenario_run.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_scorer.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_snapshot.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_storage_object.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_axon.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_benchmark.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_benchmark_run.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_blueprint.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_execution.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_execution_result.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_gateway_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_helpers.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_network_policy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_ops.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_scenario.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_scenario_builder.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_scenario_run.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_scorer.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_snapshot.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/sdk/test_storage_object.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/README.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/conftest.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/examples/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/examples/test_examples.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/README.md +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/__init__.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/conftest.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_agent.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_agent.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_axon.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_benchmark.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_blueprint.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_devbox.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_gateway_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_network_policy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_scenario.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_scorer.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_sdk.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_secret.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_snapshot.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_storage_object.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_axon.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_benchmark.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_blueprint.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_devbox.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_gateway_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_mcp_config.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_network_policy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_scenario.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_scorer.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_sdk.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_secret.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_snapshot.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_storage_object.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/test_blueprints.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/test_devboxes.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/test_executions.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/test_scenarios_benchmarks.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/test_snapshots.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/smoketests/utils.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_client.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_command_id.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_extract_files.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_files.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_h2_bulkhead_integration.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_models.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_polling.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_qs.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_required_args.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_response.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_shared_pool.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_streaming.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_transfer_client.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_transform.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_utils/test_context_loader.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_utils/test_json.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_utils/test_path.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_utils/test_proxy.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/test_utils/test_typing.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/tests/utils.py +0 -0
- {runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/uv.lock +0 -0
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.29.0 (2026-08-20)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.28.0...v1.29.0](https://github.com/runloopai/api-client-python/compare/v1.28.0...v1.29.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **axon:** add registry delete endpoint ([#10769](https://github.com/runloopai/api-client-python/issues/10769)) ([c63f011](https://github.com/runloopai/api-client-python/commit/c63f01108d98785b358357e4e65e5e517dd0805e))
|
|
10
|
+
* **broker:** plumb Pi protocol selection ([#10256](https://github.com/runloopai/api-client-python/issues/10256)) ([974d52b](https://github.com/runloopai/api-client-python/commit/974d52b8743ceda8a7127e3a3432ce51e71b1bfd))
|
|
11
|
+
* **config:** custom_headers on McpConfig/GatewayConfig — persistence, REST, validation, provisioner, OpenAPI ([#11096](https://github.com/runloopai/api-client-python/issues/11096)) ([9482e47](https://github.com/runloopai/api-client-python/commit/9482e475d0ad6e2b1989ee25f66a759fe839065f))
|
|
12
|
+
* **converter:** add Helm chart, container image, and enable in dev ([#10405](https://github.com/runloopai/api-client-python/issues/10405)) ([0d5ca34](https://github.com/runloopai/api-client-python/commit/0d5ca3438ac4cbcafdfaf7584042bd78a956e3ae))
|
|
13
|
+
* **devbox:** recover resume provisioning failures ([#10597](https://github.com/runloopai/api-client-python/issues/10597)) ([518301e](https://github.com/runloopai/api-client-python/commit/518301e444b95bc5fa73cc0f13be67cf3f750024))
|
|
14
|
+
* **gateway:** first-class BASIC auth mechanism ([#11063](https://github.com/runloopai/api-client-python/issues/11063)) ([1f50f93](https://github.com/runloopai/api-client-python/commit/1f50f93c26c6696d2a9f81b1b677eb9b7282601a))
|
|
15
|
+
* **mcp:** configurable auth_mechanism on McpConfig, shared shape with gateway ([#11113](https://github.com/runloopai/api-client-python/issues/11113)) ([4dd9edd](https://github.com/runloopai/api-client-python/commit/4dd9edd5abbdfab0466826db8d18cbd2efae7b31))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **devbox:** make Devbox update API patch-like ([#10582](https://github.com/runloopai/api-client-python/issues/10582)) ([0a74521](https://github.com/runloopai/api-client-python/commit/0a7452145ee6d1689d8635e65f88b8f778a84820))
|
|
21
|
+
* **gateway:** reject keyless HEADER auth_mechanism at admission and in looper ([#11120](https://github.com/runloopai/api-client-python/issues/11120)) ([194c060](https://github.com/runloopai/api-client-python/commit/194c060f4c95a85d895fc4e0d701e48b5222646c))
|
|
22
|
+
|
|
23
|
+
## 1.28.0 (2026-07-29)
|
|
24
|
+
|
|
25
|
+
Full Changelog: [v1.27.0...v1.28.0](https://github.com/runloopai/api-client-python/compare/v1.27.0...v1.28.0)
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* **devbox:** queue devboxes until node assignment ([#10320](https://github.com/runloopai/api-client-python/issues/10320)) ([1837c34](https://github.com/runloopai/api-client-python/commit/1837c346c90177c7949a4b13ba4a0470e9a72e18))
|
|
30
|
+
|
|
3
31
|
## 1.27.0 (2026-07-28)
|
|
4
32
|
|
|
5
33
|
Full Changelog: [v1.24.0...v1.27.0](https://github.com/runloopai/api-client-python/compare/v1.24.0...v1.27.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: runloop_api_client
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.29.0
|
|
4
4
|
Summary: The official Python library for the runloop API
|
|
5
5
|
Project-URL: Homepage, https://github.com/runloopai/api-client-python
|
|
6
6
|
Project-URL: Repository, https://github.com/runloopai/api-client-python
|
|
@@ -5,8 +5,10 @@ from runloop_api_client.types import (
|
|
|
5
5
|
AfterIdle,
|
|
6
6
|
AgentMount,
|
|
7
7
|
AgentSource,
|
|
8
|
+
AuthMechanism,
|
|
8
9
|
BrokerMount,
|
|
9
10
|
CodeMountParameters,
|
|
11
|
+
CustomHeader,
|
|
10
12
|
LaunchParameters,
|
|
11
13
|
LifecycleConfiguration,
|
|
12
14
|
LifecycleHooks,
|
|
@@ -131,6 +133,7 @@ Methods:
|
|
|
131
133
|
- <code title="post /v1/axons">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">create</a>(\*\*<a href="src/runloop_api_client/types/axon_create_params.py">params</a>) -> <a href="./src/runloop_api_client/types/axon_view.py">AxonView</a></code>
|
|
132
134
|
- <code title="get /v1/axons/{id}">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">retrieve</a>(id) -> <a href="./src/runloop_api_client/types/axon_view.py">AxonView</a></code>
|
|
133
135
|
- <code title="get /v1/axons">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">list</a>(\*\*<a href="src/runloop_api_client/types/axon_list_params.py">params</a>) -> <a href="./src/runloop_api_client/types/axon_view.py">SyncAxonsCursorIDPage[AxonView]</a></code>
|
|
136
|
+
- <code title="delete /v1/axons/{id}">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">delete</a>(id) -> object</code>
|
|
134
137
|
- <code title="post /v1/axons/{id}/publish">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">publish</a>(id, \*\*<a href="src/runloop_api_client/types/axon_publish_params.py">params</a>) -> <a href="./src/runloop_api_client/types/publish_result_view.py">PublishResultView</a></code>
|
|
135
138
|
- <code title="get /v1/axons/{id}/subscribe/sse">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">subscribe_sse</a>(id, \*\*<a href="src/runloop_api_client/types/axon_subscribe_sse_params.py">params</a>) -> <a href="./src/runloop_api_client/types/axon_event_view.py">AxonEventView</a></code>
|
|
136
139
|
|
|
@@ -210,6 +210,46 @@ class AxonsResource(SyncAPIResource):
|
|
|
210
210
|
model=AxonView,
|
|
211
211
|
)
|
|
212
212
|
|
|
213
|
+
def delete(
|
|
214
|
+
self,
|
|
215
|
+
id: str,
|
|
216
|
+
*,
|
|
217
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
218
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
219
|
+
extra_headers: Headers | None = None,
|
|
220
|
+
extra_query: Query | None = None,
|
|
221
|
+
extra_body: Body | None = None,
|
|
222
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
223
|
+
idempotency_key: str | None = None,
|
|
224
|
+
) -> object:
|
|
225
|
+
"""
|
|
226
|
+
[Beta] Mark an axon deleted.
|
|
227
|
+
|
|
228
|
+
Args:
|
|
229
|
+
extra_headers: Send extra headers
|
|
230
|
+
|
|
231
|
+
extra_query: Add additional query parameters to the request
|
|
232
|
+
|
|
233
|
+
extra_body: Add additional JSON properties to the request
|
|
234
|
+
|
|
235
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
236
|
+
|
|
237
|
+
idempotency_key: Specify a custom idempotency key for this request
|
|
238
|
+
"""
|
|
239
|
+
if not id:
|
|
240
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
241
|
+
return self._delete(
|
|
242
|
+
path_template("/v1/axons/{id}", id=id),
|
|
243
|
+
options=make_request_options(
|
|
244
|
+
extra_headers=extra_headers,
|
|
245
|
+
extra_query=extra_query,
|
|
246
|
+
extra_body=extra_body,
|
|
247
|
+
timeout=timeout,
|
|
248
|
+
idempotency_key=idempotency_key,
|
|
249
|
+
),
|
|
250
|
+
cast_to=object,
|
|
251
|
+
)
|
|
252
|
+
|
|
213
253
|
def publish(
|
|
214
254
|
self,
|
|
215
255
|
id: str,
|
|
@@ -485,6 +525,46 @@ class AsyncAxonsResource(AsyncAPIResource):
|
|
|
485
525
|
model=AxonView,
|
|
486
526
|
)
|
|
487
527
|
|
|
528
|
+
async def delete(
|
|
529
|
+
self,
|
|
530
|
+
id: str,
|
|
531
|
+
*,
|
|
532
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
533
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
534
|
+
extra_headers: Headers | None = None,
|
|
535
|
+
extra_query: Query | None = None,
|
|
536
|
+
extra_body: Body | None = None,
|
|
537
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
538
|
+
idempotency_key: str | None = None,
|
|
539
|
+
) -> object:
|
|
540
|
+
"""
|
|
541
|
+
[Beta] Mark an axon deleted.
|
|
542
|
+
|
|
543
|
+
Args:
|
|
544
|
+
extra_headers: Send extra headers
|
|
545
|
+
|
|
546
|
+
extra_query: Add additional query parameters to the request
|
|
547
|
+
|
|
548
|
+
extra_body: Add additional JSON properties to the request
|
|
549
|
+
|
|
550
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
551
|
+
|
|
552
|
+
idempotency_key: Specify a custom idempotency key for this request
|
|
553
|
+
"""
|
|
554
|
+
if not id:
|
|
555
|
+
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
|
556
|
+
return await self._delete(
|
|
557
|
+
path_template("/v1/axons/{id}", id=id),
|
|
558
|
+
options=make_request_options(
|
|
559
|
+
extra_headers=extra_headers,
|
|
560
|
+
extra_query=extra_query,
|
|
561
|
+
extra_body=extra_body,
|
|
562
|
+
timeout=timeout,
|
|
563
|
+
idempotency_key=idempotency_key,
|
|
564
|
+
),
|
|
565
|
+
cast_to=object,
|
|
566
|
+
)
|
|
567
|
+
|
|
488
568
|
async def publish(
|
|
489
569
|
self,
|
|
490
570
|
id: str,
|
|
@@ -607,6 +687,9 @@ class AxonsResourceWithRawResponse:
|
|
|
607
687
|
self.list = to_raw_response_wrapper(
|
|
608
688
|
axons.list,
|
|
609
689
|
)
|
|
690
|
+
self.delete = to_raw_response_wrapper(
|
|
691
|
+
axons.delete,
|
|
692
|
+
)
|
|
610
693
|
self.publish = to_raw_response_wrapper(
|
|
611
694
|
axons.publish,
|
|
612
695
|
)
|
|
@@ -636,6 +719,9 @@ class AsyncAxonsResourceWithRawResponse:
|
|
|
636
719
|
self.list = async_to_raw_response_wrapper(
|
|
637
720
|
axons.list,
|
|
638
721
|
)
|
|
722
|
+
self.delete = async_to_raw_response_wrapper(
|
|
723
|
+
axons.delete,
|
|
724
|
+
)
|
|
639
725
|
self.publish = async_to_raw_response_wrapper(
|
|
640
726
|
axons.publish,
|
|
641
727
|
)
|
|
@@ -665,6 +751,9 @@ class AxonsResourceWithStreamingResponse:
|
|
|
665
751
|
self.list = to_streamed_response_wrapper(
|
|
666
752
|
axons.list,
|
|
667
753
|
)
|
|
754
|
+
self.delete = to_streamed_response_wrapper(
|
|
755
|
+
axons.delete,
|
|
756
|
+
)
|
|
668
757
|
self.publish = to_streamed_response_wrapper(
|
|
669
758
|
axons.publish,
|
|
670
759
|
)
|
|
@@ -694,6 +783,9 @@ class AsyncAxonsResourceWithStreamingResponse:
|
|
|
694
783
|
self.list = async_to_streamed_response_wrapper(
|
|
695
784
|
axons.list,
|
|
696
785
|
)
|
|
786
|
+
self.delete = async_to_streamed_response_wrapper(
|
|
787
|
+
axons.delete,
|
|
788
|
+
)
|
|
697
789
|
self.publish = async_to_streamed_response_wrapper(
|
|
698
790
|
axons.publish,
|
|
699
791
|
)
|
|
@@ -190,11 +190,12 @@ class DevboxesResource(SyncAPIResource):
|
|
|
190
190
|
) -> DevboxView:
|
|
191
191
|
"""Create a Devbox and begin the boot process.
|
|
192
192
|
|
|
193
|
-
|
|
194
|
-
the 'provisioning' state
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
193
|
+
Standard Devboxes initially report
|
|
194
|
+
the 'provisioning' state. FLEX Devboxes initially report the 'queued' state
|
|
195
|
+
while waiting for infrastructure allocation, then transition to 'provisioning'
|
|
196
|
+
once assigned to a node. The Devbox transitions to 'initializing' while the
|
|
197
|
+
booted Devbox runs Runloop or user-defined setup scripts, then to 'running' when
|
|
198
|
+
it is ready for use.
|
|
198
199
|
|
|
199
200
|
Args:
|
|
200
201
|
blueprint_id: Blueprint ID to use for the Devbox. If none set, the Devbox will be created with
|
|
@@ -337,14 +338,17 @@ class DevboxesResource(SyncAPIResource):
|
|
|
337
338
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
338
339
|
idempotency_key: str | None = None,
|
|
339
340
|
) -> DevboxView:
|
|
340
|
-
"""
|
|
341
|
-
|
|
342
|
-
|
|
341
|
+
"""Updates the specified Devbox fields.
|
|
342
|
+
|
|
343
|
+
Omitted fields are left unchanged. An empty
|
|
344
|
+
name clears the name, and an empty metadata map clears the metadata.
|
|
343
345
|
|
|
344
346
|
Args:
|
|
345
|
-
metadata: User defined metadata to
|
|
347
|
+
metadata: User defined metadata to replace the Devbox metadata. Omit to leave unchanged or
|
|
348
|
+
set to an empty map to clear it.
|
|
346
349
|
|
|
347
|
-
name:
|
|
350
|
+
name: A user specified name to give the Devbox. Omit to leave unchanged or set to an
|
|
351
|
+
empty string to clear it.
|
|
348
352
|
|
|
349
353
|
extra_headers: Send extra headers
|
|
350
354
|
|
|
@@ -1890,11 +1894,12 @@ class AsyncDevboxesResource(AsyncAPIResource):
|
|
|
1890
1894
|
) -> DevboxView:
|
|
1891
1895
|
"""Create a Devbox and begin the boot process.
|
|
1892
1896
|
|
|
1893
|
-
|
|
1894
|
-
the 'provisioning' state
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1897
|
+
Standard Devboxes initially report
|
|
1898
|
+
the 'provisioning' state. FLEX Devboxes initially report the 'queued' state
|
|
1899
|
+
while waiting for infrastructure allocation, then transition to 'provisioning'
|
|
1900
|
+
once assigned to a node. The Devbox transitions to 'initializing' while the
|
|
1901
|
+
booted Devbox runs Runloop or user-defined setup scripts, then to 'running' when
|
|
1902
|
+
it is ready for use.
|
|
1898
1903
|
|
|
1899
1904
|
Args:
|
|
1900
1905
|
blueprint_id: Blueprint ID to use for the Devbox. If none set, the Devbox will be created with
|
|
@@ -2186,14 +2191,17 @@ class AsyncDevboxesResource(AsyncAPIResource):
|
|
|
2186
2191
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
2187
2192
|
idempotency_key: str | None = None,
|
|
2188
2193
|
) -> DevboxView:
|
|
2189
|
-
"""
|
|
2190
|
-
|
|
2191
|
-
|
|
2194
|
+
"""Updates the specified Devbox fields.
|
|
2195
|
+
|
|
2196
|
+
Omitted fields are left unchanged. An empty
|
|
2197
|
+
name clears the name, and an empty metadata map clears the metadata.
|
|
2192
2198
|
|
|
2193
2199
|
Args:
|
|
2194
|
-
metadata: User defined metadata to
|
|
2200
|
+
metadata: User defined metadata to replace the Devbox metadata. Omit to leave unchanged or
|
|
2201
|
+
set to an empty map to clear it.
|
|
2195
2202
|
|
|
2196
|
-
name:
|
|
2203
|
+
name: A user specified name to give the Devbox. Omit to leave unchanged or set to an
|
|
2204
|
+
empty string to clear it.
|
|
2197
2205
|
|
|
2198
2206
|
extra_headers: Send extra headers
|
|
2199
2207
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
5
|
+
from typing import Iterable, Optional
|
|
6
6
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
@@ -20,6 +20,8 @@ from .._response import (
|
|
|
20
20
|
from ..pagination import SyncGatewayConfigsCursorIDPage, AsyncGatewayConfigsCursorIDPage
|
|
21
21
|
from .._base_client import AsyncPaginator, make_request_options
|
|
22
22
|
from ..types.gateway_config_view import GatewayConfigView
|
|
23
|
+
from ..types.shared_params.custom_header import CustomHeader
|
|
24
|
+
from ..types.shared_params.auth_mechanism import AuthMechanism
|
|
23
25
|
|
|
24
26
|
__all__ = ["GatewayConfigsResource", "AsyncGatewayConfigsResource"]
|
|
25
27
|
|
|
@@ -47,9 +49,10 @@ class GatewayConfigsResource(SyncAPIResource):
|
|
|
47
49
|
def create(
|
|
48
50
|
self,
|
|
49
51
|
*,
|
|
50
|
-
auth_mechanism:
|
|
52
|
+
auth_mechanism: AuthMechanism,
|
|
51
53
|
endpoint: str,
|
|
52
54
|
name: str,
|
|
55
|
+
custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
|
|
53
56
|
description: Optional[str] | Omit = omit,
|
|
54
57
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
55
58
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -73,6 +76,9 @@ class GatewayConfigsResource(SyncAPIResource):
|
|
|
73
76
|
name: The human-readable name for the GatewayConfig. Must be unique within your
|
|
74
77
|
account.
|
|
75
78
|
|
|
79
|
+
custom_headers: Additional headers applied to proxied requests after the auth mechanism. At most
|
|
80
|
+
8 entries.
|
|
81
|
+
|
|
76
82
|
description: Optional description for this gateway configuration.
|
|
77
83
|
|
|
78
84
|
extra_headers: Send extra headers
|
|
@@ -92,6 +98,7 @@ class GatewayConfigsResource(SyncAPIResource):
|
|
|
92
98
|
"auth_mechanism": auth_mechanism,
|
|
93
99
|
"endpoint": endpoint,
|
|
94
100
|
"name": name,
|
|
101
|
+
"custom_headers": custom_headers,
|
|
95
102
|
"description": description,
|
|
96
103
|
},
|
|
97
104
|
gateway_config_create_params.GatewayConfigCreateParams,
|
|
@@ -143,7 +150,8 @@ class GatewayConfigsResource(SyncAPIResource):
|
|
|
143
150
|
self,
|
|
144
151
|
id: str,
|
|
145
152
|
*,
|
|
146
|
-
auth_mechanism: Optional[
|
|
153
|
+
auth_mechanism: Optional[AuthMechanism] | Omit = omit,
|
|
154
|
+
custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
|
|
147
155
|
description: Optional[str] | Omit = omit,
|
|
148
156
|
endpoint: Optional[str] | Omit = omit,
|
|
149
157
|
name: Optional[str] | Omit = omit,
|
|
@@ -160,8 +168,11 @@ class GatewayConfigsResource(SyncAPIResource):
|
|
|
160
168
|
All fields are optional.
|
|
161
169
|
|
|
162
170
|
Args:
|
|
163
|
-
auth_mechanism: Defines how
|
|
164
|
-
|
|
171
|
+
auth_mechanism: Defines how the primary credential is applied to requests proxied to the
|
|
172
|
+
upstream.
|
|
173
|
+
|
|
174
|
+
custom_headers: New list of additional headers. Replaces the existing list entirely; use an
|
|
175
|
+
empty list to clear all custom headers. At most 8 entries.
|
|
165
176
|
|
|
166
177
|
description: New description for this gateway configuration.
|
|
167
178
|
|
|
@@ -186,6 +197,7 @@ class GatewayConfigsResource(SyncAPIResource):
|
|
|
186
197
|
body=maybe_transform(
|
|
187
198
|
{
|
|
188
199
|
"auth_mechanism": auth_mechanism,
|
|
200
|
+
"custom_headers": custom_headers,
|
|
189
201
|
"description": description,
|
|
190
202
|
"endpoint": endpoint,
|
|
191
203
|
"name": name,
|
|
@@ -332,9 +344,10 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
|
|
|
332
344
|
async def create(
|
|
333
345
|
self,
|
|
334
346
|
*,
|
|
335
|
-
auth_mechanism:
|
|
347
|
+
auth_mechanism: AuthMechanism,
|
|
336
348
|
endpoint: str,
|
|
337
349
|
name: str,
|
|
350
|
+
custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
|
|
338
351
|
description: Optional[str] | Omit = omit,
|
|
339
352
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
340
353
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -358,6 +371,9 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
|
|
|
358
371
|
name: The human-readable name for the GatewayConfig. Must be unique within your
|
|
359
372
|
account.
|
|
360
373
|
|
|
374
|
+
custom_headers: Additional headers applied to proxied requests after the auth mechanism. At most
|
|
375
|
+
8 entries.
|
|
376
|
+
|
|
361
377
|
description: Optional description for this gateway configuration.
|
|
362
378
|
|
|
363
379
|
extra_headers: Send extra headers
|
|
@@ -377,6 +393,7 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
|
|
|
377
393
|
"auth_mechanism": auth_mechanism,
|
|
378
394
|
"endpoint": endpoint,
|
|
379
395
|
"name": name,
|
|
396
|
+
"custom_headers": custom_headers,
|
|
380
397
|
"description": description,
|
|
381
398
|
},
|
|
382
399
|
gateway_config_create_params.GatewayConfigCreateParams,
|
|
@@ -428,7 +445,8 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
|
|
|
428
445
|
self,
|
|
429
446
|
id: str,
|
|
430
447
|
*,
|
|
431
|
-
auth_mechanism: Optional[
|
|
448
|
+
auth_mechanism: Optional[AuthMechanism] | Omit = omit,
|
|
449
|
+
custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
|
|
432
450
|
description: Optional[str] | Omit = omit,
|
|
433
451
|
endpoint: Optional[str] | Omit = omit,
|
|
434
452
|
name: Optional[str] | Omit = omit,
|
|
@@ -445,8 +463,11 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
|
|
|
445
463
|
All fields are optional.
|
|
446
464
|
|
|
447
465
|
Args:
|
|
448
|
-
auth_mechanism: Defines how
|
|
449
|
-
|
|
466
|
+
auth_mechanism: Defines how the primary credential is applied to requests proxied to the
|
|
467
|
+
upstream.
|
|
468
|
+
|
|
469
|
+
custom_headers: New list of additional headers. Replaces the existing list entirely; use an
|
|
470
|
+
empty list to clear all custom headers. At most 8 entries.
|
|
450
471
|
|
|
451
472
|
description: New description for this gateway configuration.
|
|
452
473
|
|
|
@@ -471,6 +492,7 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
|
|
|
471
492
|
body=await async_maybe_transform(
|
|
472
493
|
{
|
|
473
494
|
"auth_mechanism": auth_mechanism,
|
|
495
|
+
"custom_headers": custom_headers,
|
|
474
496
|
"description": description,
|
|
475
497
|
"endpoint": endpoint,
|
|
476
498
|
"name": name,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Optional
|
|
5
|
+
from typing import Iterable, Optional
|
|
6
6
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
@@ -20,6 +20,8 @@ from .._response import (
|
|
|
20
20
|
from ..pagination import SyncMcpConfigsCursorIDPage, AsyncMcpConfigsCursorIDPage
|
|
21
21
|
from .._base_client import AsyncPaginator, make_request_options
|
|
22
22
|
from ..types.mcp_config_view import McpConfigView
|
|
23
|
+
from ..types.shared_params.custom_header import CustomHeader
|
|
24
|
+
from ..types.shared_params.auth_mechanism import AuthMechanism
|
|
23
25
|
|
|
24
26
|
__all__ = ["McpConfigsResource", "AsyncMcpConfigsResource"]
|
|
25
27
|
|
|
@@ -50,6 +52,8 @@ class McpConfigsResource(SyncAPIResource):
|
|
|
50
52
|
allowed_tools: SequenceNotStr[str],
|
|
51
53
|
endpoint: str,
|
|
52
54
|
name: str,
|
|
55
|
+
auth_mechanism: Optional[AuthMechanism] | Omit = omit,
|
|
56
|
+
custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
|
|
53
57
|
description: Optional[str] | Omit = omit,
|
|
54
58
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
55
59
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -75,6 +79,12 @@ class McpConfigsResource(SyncAPIResource):
|
|
|
75
79
|
The first segment before '-' is used as the service name for tool routing (e.g.,
|
|
76
80
|
'github-readonly' uses 'github' as the service name).
|
|
77
81
|
|
|
82
|
+
auth_mechanism: Defines how the primary credential is applied to requests proxied to the
|
|
83
|
+
upstream.
|
|
84
|
+
|
|
85
|
+
custom_headers: Additional headers applied to upstream requests after the credential. At most 8
|
|
86
|
+
entries.
|
|
87
|
+
|
|
78
88
|
description: Optional description for this MCP configuration.
|
|
79
89
|
|
|
80
90
|
extra_headers: Send extra headers
|
|
@@ -94,6 +104,8 @@ class McpConfigsResource(SyncAPIResource):
|
|
|
94
104
|
"allowed_tools": allowed_tools,
|
|
95
105
|
"endpoint": endpoint,
|
|
96
106
|
"name": name,
|
|
107
|
+
"auth_mechanism": auth_mechanism,
|
|
108
|
+
"custom_headers": custom_headers,
|
|
97
109
|
"description": description,
|
|
98
110
|
},
|
|
99
111
|
mcp_config_create_params.McpConfigCreateParams,
|
|
@@ -146,6 +158,8 @@ class McpConfigsResource(SyncAPIResource):
|
|
|
146
158
|
id: str,
|
|
147
159
|
*,
|
|
148
160
|
allowed_tools: Optional[SequenceNotStr[str]] | Omit = omit,
|
|
161
|
+
auth_mechanism: Optional[AuthMechanism] | Omit = omit,
|
|
162
|
+
custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
|
|
149
163
|
description: Optional[str] | Omit = omit,
|
|
150
164
|
endpoint: Optional[str] | Omit = omit,
|
|
151
165
|
name: Optional[str] | Omit = omit,
|
|
@@ -165,6 +179,12 @@ class McpConfigsResource(SyncAPIResource):
|
|
|
165
179
|
allowed_tools: New glob patterns specifying which tools are allowed. Examples: ['*'] for all
|
|
166
180
|
tools, ['github.search_*'] for specific patterns.
|
|
167
181
|
|
|
182
|
+
auth_mechanism: Defines how the primary credential is applied to requests proxied to the
|
|
183
|
+
upstream.
|
|
184
|
+
|
|
185
|
+
custom_headers: New list of additional headers. Replaces the existing list entirely; use an
|
|
186
|
+
empty list to clear all custom headers. At most 8 entries.
|
|
187
|
+
|
|
168
188
|
description: New description for this MCP configuration.
|
|
169
189
|
|
|
170
190
|
endpoint: New target MCP server endpoint URL.
|
|
@@ -188,6 +208,8 @@ class McpConfigsResource(SyncAPIResource):
|
|
|
188
208
|
body=maybe_transform(
|
|
189
209
|
{
|
|
190
210
|
"allowed_tools": allowed_tools,
|
|
211
|
+
"auth_mechanism": auth_mechanism,
|
|
212
|
+
"custom_headers": custom_headers,
|
|
191
213
|
"description": description,
|
|
192
214
|
"endpoint": endpoint,
|
|
193
215
|
"name": name,
|
|
@@ -336,6 +358,8 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
|
|
|
336
358
|
allowed_tools: SequenceNotStr[str],
|
|
337
359
|
endpoint: str,
|
|
338
360
|
name: str,
|
|
361
|
+
auth_mechanism: Optional[AuthMechanism] | Omit = omit,
|
|
362
|
+
custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
|
|
339
363
|
description: Optional[str] | Omit = omit,
|
|
340
364
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
341
365
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -361,6 +385,12 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
|
|
|
361
385
|
The first segment before '-' is used as the service name for tool routing (e.g.,
|
|
362
386
|
'github-readonly' uses 'github' as the service name).
|
|
363
387
|
|
|
388
|
+
auth_mechanism: Defines how the primary credential is applied to requests proxied to the
|
|
389
|
+
upstream.
|
|
390
|
+
|
|
391
|
+
custom_headers: Additional headers applied to upstream requests after the credential. At most 8
|
|
392
|
+
entries.
|
|
393
|
+
|
|
364
394
|
description: Optional description for this MCP configuration.
|
|
365
395
|
|
|
366
396
|
extra_headers: Send extra headers
|
|
@@ -380,6 +410,8 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
|
|
|
380
410
|
"allowed_tools": allowed_tools,
|
|
381
411
|
"endpoint": endpoint,
|
|
382
412
|
"name": name,
|
|
413
|
+
"auth_mechanism": auth_mechanism,
|
|
414
|
+
"custom_headers": custom_headers,
|
|
383
415
|
"description": description,
|
|
384
416
|
},
|
|
385
417
|
mcp_config_create_params.McpConfigCreateParams,
|
|
@@ -432,6 +464,8 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
|
|
|
432
464
|
id: str,
|
|
433
465
|
*,
|
|
434
466
|
allowed_tools: Optional[SequenceNotStr[str]] | Omit = omit,
|
|
467
|
+
auth_mechanism: Optional[AuthMechanism] | Omit = omit,
|
|
468
|
+
custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
|
|
435
469
|
description: Optional[str] | Omit = omit,
|
|
436
470
|
endpoint: Optional[str] | Omit = omit,
|
|
437
471
|
name: Optional[str] | Omit = omit,
|
|
@@ -451,6 +485,12 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
|
|
|
451
485
|
allowed_tools: New glob patterns specifying which tools are allowed. Examples: ['*'] for all
|
|
452
486
|
tools, ['github.search_*'] for specific patterns.
|
|
453
487
|
|
|
488
|
+
auth_mechanism: Defines how the primary credential is applied to requests proxied to the
|
|
489
|
+
upstream.
|
|
490
|
+
|
|
491
|
+
custom_headers: New list of additional headers. Replaces the existing list entirely; use an
|
|
492
|
+
empty list to clear all custom headers. At most 8 entries.
|
|
493
|
+
|
|
454
494
|
description: New description for this MCP configuration.
|
|
455
495
|
|
|
456
496
|
endpoint: New target MCP server endpoint URL.
|
|
@@ -474,6 +514,8 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
|
|
|
474
514
|
body=await async_maybe_transform(
|
|
475
515
|
{
|
|
476
516
|
"allowed_tools": allowed_tools,
|
|
517
|
+
"auth_mechanism": auth_mechanism,
|
|
518
|
+
"custom_headers": custom_headers,
|
|
477
519
|
"description": description,
|
|
478
520
|
"endpoint": endpoint,
|
|
479
521
|
"name": name,
|
{runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/__init__.py
RENAMED
|
@@ -10,6 +10,8 @@ from .shared import (
|
|
|
10
10
|
AgentSource as AgentSource,
|
|
11
11
|
BrokerMount as BrokerMount,
|
|
12
12
|
ObjectMount as ObjectMount,
|
|
13
|
+
CustomHeader as CustomHeader,
|
|
14
|
+
AuthMechanism as AuthMechanism,
|
|
13
15
|
LifecycleHooks as LifecycleHooks,
|
|
14
16
|
ResumeTriggers as ResumeTriggers,
|
|
15
17
|
LaunchParameters as LaunchParameters,
|
|
@@ -63,7 +63,7 @@ class BlueprintView(BaseModel):
|
|
|
63
63
|
state: Literal["created", "deleted"]
|
|
64
64
|
"""The state of the Blueprint."""
|
|
65
65
|
|
|
66
|
-
status: Literal["queued", "provisioning", "building", "failed", "build_complete"]
|
|
66
|
+
status: Literal["queued", "provisioning", "building", "awaiting_upload", "failed", "build_complete"]
|
|
67
67
|
"""The status of the Blueprint build."""
|
|
68
68
|
|
|
69
69
|
base_blueprint_id: Optional[str] = None
|
|
@@ -10,7 +10,13 @@ __all__ = ["DevboxUpdateParams"]
|
|
|
10
10
|
|
|
11
11
|
class DevboxUpdateParams(TypedDict, total=False):
|
|
12
12
|
metadata: Optional[Dict[str, str]]
|
|
13
|
-
"""User defined metadata to
|
|
13
|
+
"""User defined metadata to replace the Devbox metadata.
|
|
14
|
+
|
|
15
|
+
Omit to leave unchanged or set to an empty map to clear it.
|
|
16
|
+
"""
|
|
14
17
|
|
|
15
18
|
name: Optional[str]
|
|
16
|
-
"""
|
|
19
|
+
"""A user specified name to give the Devbox.
|
|
20
|
+
|
|
21
|
+
Omit to leave unchanged or set to an empty string to clear it.
|
|
22
|
+
"""
|
{runloop_api_client-1.27.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_view.py
RENAMED
|
@@ -11,6 +11,9 @@ __all__ = ["DevboxView", "StateTransition", "GatewaySpecs", "McpSpecs"]
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class StateTransition(BaseModel):
|
|
14
|
+
failure_reason: Optional[str] = None
|
|
15
|
+
"""The failure that caused this state transition, if applicable."""
|
|
16
|
+
|
|
14
17
|
status: Optional[
|
|
15
18
|
Literal[
|
|
16
19
|
"scheduled",
|