Skip to content

Commit d0cf7a4

Browse files
feat(api): add bpf_debug_level field to KernelControlsConfig
1 parent c89b37e commit d0cf7a4

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 175
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-18081d3ce0bf5a7c07f195ffcf7934a53c1822f2439270d4e03b89a3993aa3e1.yml
3-
openapi_spec_hash: 38600260362ddb6b1419e21838e97783
4-
config_hash: 469d30a2d44895c8c53a5aac370a56f1
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gitpod%2Fgitpod-630c480e52441c340adc8a1e95c59e866136b0126b253234bdd578e75cdbbfa8.yml
3+
openapi_spec_hash: 5888d9e3eb30cf12d42cee3ac3932160
4+
config_hash: b478642d4e5f97aab620afc5c51bb2ea

api.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ Types:
114114
```python
115115
from gitpod.types import (
116116
AdmissionLevel,
117+
BpfDebugLevel,
117118
Environment,
118119
EnvironmentActivitySignal,
119120
EnvironmentMetadata,

src/gitpod/types/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
from .runner_variant import RunnerVariant as RunnerVariant
6464
from .admission_level import AdmissionLevel as AdmissionLevel
6565
from .agent_execution import AgentExecution as AgentExecution
66+
from .bpf_debug_level import BpfDebugLevel as BpfDebugLevel
6667
from .prebuild_status import PrebuildStatus as PrebuildStatus
6768
from .prompt_metadata import PromptMetadata as PromptMetadata
6869
from .runner_provider import RunnerProvider as RunnerProvider
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing_extensions import Literal, TypeAlias
4+
5+
__all__ = ["BpfDebugLevel"]
6+
7+
BpfDebugLevel: TypeAlias = Literal["BPF_DEBUG_LEVEL_UNSPECIFIED", "BPF_DEBUG_LEVEL_INFO", "BPF_DEBUG_LEVEL_VERBOSE"]

0 commit comments

Comments
 (0)