We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7881ec2 commit 7ca5f0bCopy full SHA for 7ca5f0b
src/agentex/_client.py
@@ -8,6 +8,8 @@
8
9
import httpx
10
11
+from agentex.resources import DeploymentHistoryResource
12
+
13
from . import _exceptions
14
from ._qs import Querystring
15
from ._types import (
@@ -175,6 +177,12 @@ def tracker(self) -> TrackerResource:
175
177
176
178
return TrackerResource(self)
179
180
+ @cached_property
181
+ def deployment_history(self) -> DeploymentHistoryResource:
182
+ from .resources.deployment_history import DeploymentHistoryResource
183
184
+ return DeploymentHistoryResource(self)
185
186
@cached_property
187
def with_raw_response(self) -> AgentexWithRawResponse:
188
return AgentexWithRawResponse(self)
0 commit comments