|
21 | 21 | CreateAgentRuntimeEndpointRequest, |
22 | 22 | CreateAgentRuntimeInput, |
23 | 23 | CreateAgentRuntimeRequest, |
| 24 | + DeleteAgentRuntimeEndpointRequest, |
| 25 | + DeleteAgentRuntimeRequest, |
| 26 | + GetAgentRuntimeEndpointRequest, |
24 | 27 | GetAgentRuntimeRequest, |
25 | 28 | ListAgentRuntimeEndpointsOutput, |
26 | 29 | ListAgentRuntimeEndpointsRequest, |
@@ -193,6 +196,7 @@ def delete_agent_runtime( |
193 | 196 | client = self._get_client(config) |
194 | 197 | response = client.delete_agent_runtime_with_options( |
195 | 198 | agent_id, |
| 199 | + DeleteAgentRuntimeRequest(), |
196 | 200 | headers=headers or {}, |
197 | 201 | runtime=RuntimeOptions(), |
198 | 202 | ) |
@@ -248,6 +252,7 @@ async def delete_agent_runtime_async( |
248 | 252 | client = self._get_client(config) |
249 | 253 | response = await client.delete_agent_runtime_with_options_async( |
250 | 254 | agent_id, |
| 255 | + DeleteAgentRuntimeRequest(), |
251 | 256 | headers=headers or {}, |
252 | 257 | runtime=RuntimeOptions(), |
253 | 258 | ) |
@@ -778,6 +783,7 @@ def delete_agent_runtime_endpoint( |
778 | 783 | response = client.delete_agent_runtime_endpoint_with_options( |
779 | 784 | agent_id, |
780 | 785 | endpoint_id, |
| 786 | + DeleteAgentRuntimeEndpointRequest(), |
781 | 787 | headers=headers or {}, |
782 | 788 | runtime=RuntimeOptions(), |
783 | 789 | ) |
@@ -838,6 +844,7 @@ async def delete_agent_runtime_endpoint_async( |
838 | 844 | await client.delete_agent_runtime_endpoint_with_options_async( |
839 | 845 | agent_id, |
840 | 846 | endpoint_id, |
| 847 | + DeleteAgentRuntimeEndpointRequest(), |
841 | 848 | headers=headers or {}, |
842 | 849 | runtime=RuntimeOptions(), |
843 | 850 | ) |
@@ -1028,6 +1035,7 @@ def get_agent_runtime_endpoint( |
1028 | 1035 | response = client.get_agent_runtime_endpoint_with_options( |
1029 | 1036 | agent_id, |
1030 | 1037 | endpoint_id, |
| 1038 | + GetAgentRuntimeEndpointRequest(), |
1031 | 1039 | headers=headers or {}, |
1032 | 1040 | runtime=RuntimeOptions(), |
1033 | 1041 | ) |
@@ -1088,6 +1096,7 @@ async def get_agent_runtime_endpoint_async( |
1088 | 1096 | await client.get_agent_runtime_endpoint_with_options_async( |
1089 | 1097 | agent_id, |
1090 | 1098 | endpoint_id, |
| 1099 | + GetAgentRuntimeEndpointRequest(), |
1091 | 1100 | headers=headers or {}, |
1092 | 1101 | runtime=RuntimeOptions(), |
1093 | 1102 | ) |
|
0 commit comments