Skip to content

Commit 0c64614

Browse files
fix: remove beta docs from gateway-config (#7677)
1 parent 0f2df48 commit 0c64614

3 files changed

Lines changed: 17 additions & 19 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 118
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-fa81aa937935299daa80a12956d3f4d69344342291689a77f41f14db5efd928e.yml
3-
openapi_spec_hash: e388727b0c2f4debe675845ab26feacd
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-3bde463fcdfe8cd4bdb47a6e14cf41c7a61e2638071ad093de9c492c96ad36bd.yml
3+
openapi_spec_hash: e790f738711f3a87d006728ccdd26eee
44
config_hash: cbda3692cb48ab8582a0df1674b9e5c8

src/runloop_api_client/resources/gateway_configs.py

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,8 @@ def create(
6060
idempotency_key: str | None = None,
6161
) -> GatewayConfigView:
6262
"""
63-
[Beta] Create a new GatewayConfig to proxy API requests through the credential
64-
gateway. The config specifies the target endpoint and how credentials should be
65-
applied.
63+
Create a new GatewayConfig to proxy API requests through the credential gateway.
64+
The config specifies the target endpoint and how credentials should be applied.
6665
6766
Args:
6867
auth_mechanism: How credentials should be applied to proxied requests. Specify the type
@@ -118,7 +117,7 @@ def retrieve(
118117
timeout: float | httpx.Timeout | None | NotGiven = not_given,
119118
) -> GatewayConfigView:
120119
"""
121-
[Beta] Get a specific GatewayConfig by its unique identifier.
120+
Get a specific GatewayConfig by its unique identifier.
122121
123122
Args:
124123
extra_headers: Send extra headers
@@ -155,7 +154,7 @@ def update(
155154
timeout: float | httpx.Timeout | None | NotGiven = not_given,
156155
idempotency_key: str | None = None,
157156
) -> GatewayConfigView:
158-
"""[Beta] Update an existing GatewayConfig.
157+
"""Update an existing GatewayConfig.
159158
160159
All fields are optional.
161160
@@ -216,8 +215,8 @@ def list(
216215
timeout: float | httpx.Timeout | None | NotGiven = not_given,
217216
) -> SyncGatewayConfigsCursorIDPage[GatewayConfigView]:
218217
"""
219-
[Beta] List all GatewayConfigs for the authenticated account, including
220-
system-provided configs like 'anthropic' and 'openai'.
218+
List all GatewayConfigs for the authenticated account, including system-provided
219+
configs like 'anthropic' and 'openai'.
221220
222221
Args:
223222
id: Filter by ID.
@@ -269,7 +268,7 @@ def delete(
269268
timeout: float | httpx.Timeout | None | NotGiven = not_given,
270269
idempotency_key: str | None = None,
271270
) -> GatewayConfigView:
272-
"""[Beta] Delete an existing GatewayConfig.
271+
"""Delete an existing GatewayConfig.
273272
274273
This action is irreversible.
275274
@@ -335,9 +334,8 @@ async def create(
335334
idempotency_key: str | None = None,
336335
) -> GatewayConfigView:
337336
"""
338-
[Beta] Create a new GatewayConfig to proxy API requests through the credential
339-
gateway. The config specifies the target endpoint and how credentials should be
340-
applied.
337+
Create a new GatewayConfig to proxy API requests through the credential gateway.
338+
The config specifies the target endpoint and how credentials should be applied.
341339
342340
Args:
343341
auth_mechanism: How credentials should be applied to proxied requests. Specify the type
@@ -393,7 +391,7 @@ async def retrieve(
393391
timeout: float | httpx.Timeout | None | NotGiven = not_given,
394392
) -> GatewayConfigView:
395393
"""
396-
[Beta] Get a specific GatewayConfig by its unique identifier.
394+
Get a specific GatewayConfig by its unique identifier.
397395
398396
Args:
399397
extra_headers: Send extra headers
@@ -430,7 +428,7 @@ async def update(
430428
timeout: float | httpx.Timeout | None | NotGiven = not_given,
431429
idempotency_key: str | None = None,
432430
) -> GatewayConfigView:
433-
"""[Beta] Update an existing GatewayConfig.
431+
"""Update an existing GatewayConfig.
434432
435433
All fields are optional.
436434
@@ -491,8 +489,8 @@ def list(
491489
timeout: float | httpx.Timeout | None | NotGiven = not_given,
492490
) -> AsyncPaginator[GatewayConfigView, AsyncGatewayConfigsCursorIDPage[GatewayConfigView]]:
493491
"""
494-
[Beta] List all GatewayConfigs for the authenticated account, including
495-
system-provided configs like 'anthropic' and 'openai'.
492+
List all GatewayConfigs for the authenticated account, including system-provided
493+
configs like 'anthropic' and 'openai'.
496494
497495
Args:
498496
id: Filter by ID.
@@ -544,7 +542,7 @@ async def delete(
544542
timeout: float | httpx.Timeout | None | NotGiven = not_given,
545543
idempotency_key: str | None = None,
546544
) -> GatewayConfigView:
547-
"""[Beta] Delete an existing GatewayConfig.
545+
"""Delete an existing GatewayConfig.
548546
549547
This action is irreversible.
550548

src/runloop_api_client/types/devbox_view.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class DevboxView(BaseModel):
9696
"""The failure reason if the Devbox failed, if the Devbox has a 'failure' status."""
9797

9898
gateway_specs: Optional[Dict[str, GatewaySpecs]] = None
99-
"""[Beta] Gateway specifications configured for this devbox.
99+
"""Gateway specifications configured for this devbox.
100100
101101
Map key is the environment variable prefix (e.g., 'GWS_ANTHROPIC').
102102
"""

0 commit comments

Comments
 (0)