File tree Expand file tree Collapse file tree 4 files changed +23
-2
lines changed Expand file tree Collapse file tree 4 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 51
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-d0090ff3ef876c554e7a1281d5cbe1666cf68aebfc60e05cb7f4302ee377b372 .yml
3- openapi_spec_hash : 33fef541c420a28125f18cd1efc0d585
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-a880f2209deafc4a011da42eb52f1dac0308d18ae1daa1d7253edc3385c9b1c4 .yml
3+ openapi_spec_hash : ae5af3810d28e49a68b12f2bb2d2af0e
44config_hash : 49c2ff978aaa5ccb4ce324a72f116010
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
33from typing import Union , Optional
4+ from datetime import datetime
45from typing_extensions import Literal , TypeAlias
56
67from .._models import BaseModel
@@ -175,5 +176,11 @@ class ProxyCreateResponse(BaseModel):
175176 config : Optional [Config ] = None
176177 """Configuration specific to the selected proxy `type`."""
177178
179+ last_checked : Optional [datetime ] = None
180+ """Timestamp of the last health check performed on this proxy."""
181+
178182 name : Optional [str ] = None
179183 """Readable name of the proxy."""
184+
185+ status : Optional [Literal ["available" , "unavailable" ]] = None
186+ """Current health status of the proxy."""
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
33from typing import List , Union , Optional
4+ from datetime import datetime
45from typing_extensions import Literal , TypeAlias
56
67from .._models import BaseModel
@@ -176,8 +177,14 @@ class ProxyListResponseItem(BaseModel):
176177 config : Optional [ProxyListResponseItemConfig ] = None
177178 """Configuration specific to the selected proxy `type`."""
178179
180+ last_checked : Optional [datetime ] = None
181+ """Timestamp of the last health check performed on this proxy."""
182+
179183 name : Optional [str ] = None
180184 """Readable name of the proxy."""
181185
186+ status : Optional [Literal ["available" , "unavailable" ]] = None
187+ """Current health status of the proxy."""
188+
182189
183190ProxyListResponse : TypeAlias = List [ProxyListResponseItem ]
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
33from typing import Union , Optional
4+ from datetime import datetime
45from typing_extensions import Literal , TypeAlias
56
67from .._models import BaseModel
@@ -175,5 +176,11 @@ class ProxyRetrieveResponse(BaseModel):
175176 config : Optional [Config ] = None
176177 """Configuration specific to the selected proxy `type`."""
177178
179+ last_checked : Optional [datetime ] = None
180+ """Timestamp of the last health check performed on this proxy."""
181+
178182 name : Optional [str ] = None
179183 """Readable name of the proxy."""
184+
185+ status : Optional [Literal ["available" , "unavailable" ]] = None
186+ """Current health status of the proxy."""
You can’t perform that action at this time.
0 commit comments