@@ -227,6 +227,103 @@ def delete_claw_omni_instance_with_http_info(self, body, **kwargs): # noqa: E50
227227 _request_timeout = params .get ('_request_timeout' ),
228228 collection_formats = collection_formats )
229229
230+ def execute_claw_omni_instance_command (self , body , ** kwargs ): # noqa: E501
231+ """execute_claw_omni_instance_command # noqa: E501
232+
233+ This method makes a synchronous HTTP request by default. To make an
234+ asynchronous HTTP request, please pass async_req=True
235+ >>> thread = api.execute_claw_omni_instance_command(body, async_req=True)
236+ >>> result = thread.get()
237+
238+ :param async_req bool
239+ :param ExecuteClawOmniInstanceCommandRequest body: (required)
240+ :return: ExecuteClawOmniInstanceCommandResponse
241+ If the method is called asynchronously,
242+ returns the request thread.
243+ """
244+ kwargs ['_return_http_data_only' ] = True
245+ if kwargs .get ('async_req' ):
246+ return self .execute_claw_omni_instance_command_with_http_info (body , ** kwargs ) # noqa: E501
247+ else :
248+ (data ) = self .execute_claw_omni_instance_command_with_http_info (body , ** kwargs ) # noqa: E501
249+ return data
250+
251+ def execute_claw_omni_instance_command_with_http_info (self , body , ** kwargs ): # noqa: E501
252+ """execute_claw_omni_instance_command # noqa: E501
253+
254+ This method makes a synchronous HTTP request by default. To make an
255+ asynchronous HTTP request, please pass async_req=True
256+ >>> thread = api.execute_claw_omni_instance_command_with_http_info(body, async_req=True)
257+ >>> result = thread.get()
258+
259+ :param async_req bool
260+ :param ExecuteClawOmniInstanceCommandRequest body: (required)
261+ :return: ExecuteClawOmniInstanceCommandResponse
262+ If the method is called asynchronously,
263+ returns the request thread.
264+ """
265+
266+ all_params = ['body' ] # noqa: E501
267+ all_params .append ('async_req' )
268+ all_params .append ('_return_http_data_only' )
269+ all_params .append ('_preload_content' )
270+ all_params .append ('_request_timeout' )
271+
272+ params = locals ()
273+ for key , val in six .iteritems (params ['kwargs' ]):
274+ if key not in all_params :
275+ raise TypeError (
276+ "Got an unexpected keyword argument '%s'"
277+ " to method execute_claw_omni_instance_command" % key
278+ )
279+ params [key ] = val
280+ del params ['kwargs' ]
281+ # verify the required parameter 'body' is set
282+ if self .api_client .client_side_validation and ('body' not in params or
283+ params ['body' ] is None ): # noqa: E501
284+ raise ValueError ("Missing the required parameter `body` when calling `execute_claw_omni_instance_command`" ) # noqa: E501
285+
286+ collection_formats = {}
287+
288+ path_params = {}
289+
290+ query_params = []
291+
292+ header_params = {}
293+
294+ form_params = []
295+ local_var_files = {}
296+
297+ body_params = None
298+ if 'body' in params :
299+ body_params = params ['body' ]
300+ # HTTP header `Accept`
301+ header_params ['Accept' ] = self .api_client .select_header_accept (
302+ ['application/json' ]) # noqa: E501
303+
304+ # HTTP header `Content-Type`
305+ header_params ['Content-Type' ] = self .api_client .select_header_content_type ( # noqa: E501
306+ ['text/plain' ]) # noqa: E501
307+
308+ # Authentication setting
309+ auth_settings = ['volcengineSign' ] # noqa: E501
310+
311+ return self .api_client .call_api (
312+ '/ExecuteClawOmniInstanceCommand/2026-03-01/arkclaw/get/text_plain/' , 'GET' ,
313+ path_params ,
314+ query_params ,
315+ header_params ,
316+ body = body_params ,
317+ post_params = form_params ,
318+ files = local_var_files ,
319+ response_type = 'ExecuteClawOmniInstanceCommandResponse' , # noqa: E501
320+ auth_settings = auth_settings ,
321+ async_req = params .get ('async_req' ),
322+ _return_http_data_only = params .get ('_return_http_data_only' ),
323+ _preload_content = params .get ('_preload_content' , True ),
324+ _request_timeout = params .get ('_request_timeout' ),
325+ collection_formats = collection_formats )
326+
230327 def get_claw_omni_instance (self , body , ** kwargs ): # noqa: E501
231328 """get_claw_omni_instance # noqa: E501
232329
0 commit comments