Class: DaytonaToolboxApiClient::ComputerUseApi

Inherits:
Object
  • Object
show all
Defined in:
lib/daytona_toolbox_api_client/api/computer_use_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ ComputerUseApi

Returns a new instance of ComputerUseApi.



19
20
21
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 19

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



17
18
19
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#click(request, opts = {}) ⇒ MouseClickResponse

Click mouse button Click the mouse button at the specified coordinates

Parameters:

  • request (MouseClickRequest)

    Mouse click request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



27
28
29
30
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 27

def click(request, opts = {})
  data, _status_code, _headers = click_with_http_info(request, opts)
  data
end

#click_with_http_info(request, opts = {}) ⇒ Array<(MouseClickResponse, Integer, Hash)>

Click mouse button Click the mouse button at the specified coordinates

Parameters:

  • request (MouseClickRequest)

    Mouse click request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(MouseClickResponse, Integer, Hash)>)

    MouseClickResponse data, response status code and response headers



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 37

def click_with_http_info(request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.click ...'
  end
  # verify the required parameter 'request' is set
  if @api_client.config.client_side_validation && request.nil?
    fail ArgumentError, "Missing the required parameter 'request' when calling ComputerUseApi.click"
  end
  # resource path
  local_var_path = '/computeruse/mouse/click'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(request)

  # return_type
  return_type = opts[:debug_return_type] || 'MouseClickResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.click",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#click\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#drag(request, opts = {}) ⇒ MouseDragResponse

Drag mouse Drag the mouse from start to end coordinates

Parameters:

  • request (MouseDragRequest)

    Mouse drag request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



95
96
97
98
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 95

def drag(request, opts = {})
  data, _status_code, _headers = drag_with_http_info(request, opts)
  data
end

#drag_with_http_info(request, opts = {}) ⇒ Array<(MouseDragResponse, Integer, Hash)>

Drag mouse Drag the mouse from start to end coordinates

Parameters:

  • request (MouseDragRequest)

    Mouse drag request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(MouseDragResponse, Integer, Hash)>)

    MouseDragResponse data, response status code and response headers



105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 105

def drag_with_http_info(request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.drag ...'
  end
  # verify the required parameter 'request' is set
  if @api_client.config.client_side_validation && request.nil?
    fail ArgumentError, "Missing the required parameter 'request' when calling ComputerUseApi.drag"
  end
  # resource path
  local_var_path = '/computeruse/mouse/drag'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(request)

  # return_type
  return_type = opts[:debug_return_type] || 'MouseDragResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.drag",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#drag\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_computer_use_status(opts = {}) ⇒ ComputerUseStatusResponse

Get computer use process status Get the status of all computer use processes

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



162
163
164
165
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 162

def get_computer_use_status(opts = {})
  data, _status_code, _headers = get_computer_use_status_with_http_info(opts)
  data
end

#get_computer_use_status_with_http_info(opts = {}) ⇒ Array<(ComputerUseStatusResponse, Integer, Hash)>

Get computer use process status Get the status of all computer use processes

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ComputerUseStatusResponse, Integer, Hash)>)

    ComputerUseStatusResponse data, response status code and response headers



171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 171

def get_computer_use_status_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_computer_use_status ...'
  end
  # resource path
  local_var_path = '/computeruse/process-status'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ComputerUseStatusResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_computer_use_status",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#get_computer_use_status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_computer_use_system_status(opts = {}) ⇒ ComputerUseStatusResponse

Get computer use status Get the current status of the computer use system

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



219
220
221
222
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 219

def get_computer_use_system_status(opts = {})
  data, _status_code, _headers = get_computer_use_system_status_with_http_info(opts)
  data
end

#get_computer_use_system_status_with_http_info(opts = {}) ⇒ Array<(ComputerUseStatusResponse, Integer, Hash)>

Get computer use status Get the current status of the computer use system

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ComputerUseStatusResponse, Integer, Hash)>)

    ComputerUseStatusResponse data, response status code and response headers



228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 228

def get_computer_use_system_status_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_computer_use_system_status ...'
  end
  # resource path
  local_var_path = '/computeruse/status'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ComputerUseStatusResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_computer_use_system_status",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#get_computer_use_system_status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_display_info(opts = {}) ⇒ DisplayInfoResponse

Get display information Get information about all available displays

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



276
277
278
279
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 276

def get_display_info(opts = {})
  data, _status_code, _headers = get_display_info_with_http_info(opts)
  data
end

#get_display_info_with_http_info(opts = {}) ⇒ Array<(DisplayInfoResponse, Integer, Hash)>

Get display information Get information about all available displays

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(DisplayInfoResponse, Integer, Hash)>)

    DisplayInfoResponse data, response status code and response headers



285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 285

def get_display_info_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_display_info ...'
  end
  # resource path
  local_var_path = '/computeruse/display/info'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'DisplayInfoResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_display_info",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#get_display_info\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_mouse_position(opts = {}) ⇒ MousePositionResponse

Get mouse position Get the current mouse cursor position

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



333
334
335
336
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 333

def get_mouse_position(opts = {})
  data, _status_code, _headers = get_mouse_position_with_http_info(opts)
  data
end

#get_mouse_position_with_http_info(opts = {}) ⇒ Array<(MousePositionResponse, Integer, Hash)>

Get mouse position Get the current mouse cursor position

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(MousePositionResponse, Integer, Hash)>)

    MousePositionResponse data, response status code and response headers



342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 342

def get_mouse_position_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_mouse_position ...'
  end
  # resource path
  local_var_path = '/computeruse/mouse/position'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'MousePositionResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_mouse_position",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#get_mouse_position\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_process_errors(process_name, opts = {}) ⇒ ProcessErrorsResponse

Get process errors Get errors for a specific computer use process

Parameters:

  • process_name (String)

    Process name to get errors for

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



391
392
393
394
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 391

def get_process_errors(process_name, opts = {})
  data, _status_code, _headers = get_process_errors_with_http_info(process_name, opts)
  data
end

#get_process_errors_with_http_info(process_name, opts = {}) ⇒ Array<(ProcessErrorsResponse, Integer, Hash)>

Get process errors Get errors for a specific computer use process

Parameters:

  • process_name (String)

    Process name to get errors for

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ProcessErrorsResponse, Integer, Hash)>)

    ProcessErrorsResponse data, response status code and response headers



401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 401

def get_process_errors_with_http_info(process_name, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_process_errors ...'
  end
  # verify the required parameter 'process_name' is set
  if @api_client.config.client_side_validation && process_name.nil?
    fail ArgumentError, "Missing the required parameter 'process_name' when calling ComputerUseApi.get_process_errors"
  end
  # resource path
  local_var_path = '/computeruse/process/{processName}/errors'.sub('{' + 'processName' + '}', CGI.escape(process_name.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ProcessErrorsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_process_errors",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#get_process_errors\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_process_logs(process_name, opts = {}) ⇒ ProcessLogsResponse

Get process logs Get logs for a specific computer use process

Parameters:

  • process_name (String)

    Process name to get logs for

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



454
455
456
457
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 454

def get_process_logs(process_name, opts = {})
  data, _status_code, _headers = get_process_logs_with_http_info(process_name, opts)
  data
end

#get_process_logs_with_http_info(process_name, opts = {}) ⇒ Array<(ProcessLogsResponse, Integer, Hash)>

Get process logs Get logs for a specific computer use process

Parameters:

  • process_name (String)

    Process name to get logs for

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ProcessLogsResponse, Integer, Hash)>)

    ProcessLogsResponse data, response status code and response headers



464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 464

def get_process_logs_with_http_info(process_name, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_process_logs ...'
  end
  # verify the required parameter 'process_name' is set
  if @api_client.config.client_side_validation && process_name.nil?
    fail ArgumentError, "Missing the required parameter 'process_name' when calling ComputerUseApi.get_process_logs"
  end
  # resource path
  local_var_path = '/computeruse/process/{processName}/logs'.sub('{' + 'processName' + '}', CGI.escape(process_name.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ProcessLogsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_process_logs",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#get_process_logs\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_process_status(process_name, opts = {}) ⇒ ProcessStatusResponse

Get specific process status Check if a specific computer use process is running

Parameters:

  • process_name (String)

    Process name to check

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



517
518
519
520
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 517

def get_process_status(process_name, opts = {})
  data, _status_code, _headers = get_process_status_with_http_info(process_name, opts)
  data
end

#get_process_status_with_http_info(process_name, opts = {}) ⇒ Array<(ProcessStatusResponse, Integer, Hash)>

Get specific process status Check if a specific computer use process is running

Parameters:

  • process_name (String)

    Process name to check

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ProcessStatusResponse, Integer, Hash)>)

    ProcessStatusResponse data, response status code and response headers



527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 527

def get_process_status_with_http_info(process_name, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_process_status ...'
  end
  # verify the required parameter 'process_name' is set
  if @api_client.config.client_side_validation && process_name.nil?
    fail ArgumentError, "Missing the required parameter 'process_name' when calling ComputerUseApi.get_process_status"
  end
  # resource path
  local_var_path = '/computeruse/process/{processName}/status'.sub('{' + 'processName' + '}', CGI.escape(process_name.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ProcessStatusResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_process_status",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#get_process_status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_windows(opts = {}) ⇒ WindowsResponse

Get windows information Get information about all open windows

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



579
580
581
582
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 579

def get_windows(opts = {})
  data, _status_code, _headers = get_windows_with_http_info(opts)
  data
end

#get_windows_with_http_info(opts = {}) ⇒ Array<(WindowsResponse, Integer, Hash)>

Get windows information Get information about all open windows

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(WindowsResponse, Integer, Hash)>)

    WindowsResponse data, response status code and response headers



588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 588

def get_windows_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_windows ...'
  end
  # resource path
  local_var_path = '/computeruse/display/windows'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'WindowsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_windows",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#get_windows\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#move_mouse(request, opts = {}) ⇒ MousePositionResponse

Move mouse cursor Move the mouse cursor to the specified coordinates

Parameters:

  • request (MouseMoveRequest)

    Mouse move request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



637
638
639
640
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 637

def move_mouse(request, opts = {})
  data, _status_code, _headers = move_mouse_with_http_info(request, opts)
  data
end

#move_mouse_with_http_info(request, opts = {}) ⇒ Array<(MousePositionResponse, Integer, Hash)>

Move mouse cursor Move the mouse cursor to the specified coordinates

Parameters:

  • request (MouseMoveRequest)

    Mouse move request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(MousePositionResponse, Integer, Hash)>)

    MousePositionResponse data, response status code and response headers



647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 647

def move_mouse_with_http_info(request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.move_mouse ...'
  end
  # verify the required parameter 'request' is set
  if @api_client.config.client_side_validation && request.nil?
    fail ArgumentError, "Missing the required parameter 'request' when calling ComputerUseApi.move_mouse"
  end
  # resource path
  local_var_path = '/computeruse/mouse/move'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(request)

  # return_type
  return_type = opts[:debug_return_type] || 'MousePositionResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.move_mouse",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#move_mouse\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#press_hotkey(request, opts = {}) ⇒ Object

Press hotkey Press a hotkey combination (e.g., ctrl+c, cmd+v)

Parameters:

  • request (KeyboardHotkeyRequest)

    Hotkey press request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Object)


705
706
707
708
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 705

def press_hotkey(request, opts = {})
  data, _status_code, _headers = press_hotkey_with_http_info(request, opts)
  data
end

#press_hotkey_with_http_info(request, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Press hotkey Press a hotkey combination (e.g., ctrl+c, cmd+v)

Parameters:

  • request (KeyboardHotkeyRequest)

    Hotkey press request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(Object, Integer, Hash)>)

    Object data, response status code and response headers



715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 715

def press_hotkey_with_http_info(request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.press_hotkey ...'
  end
  # verify the required parameter 'request' is set
  if @api_client.config.client_side_validation && request.nil?
    fail ArgumentError, "Missing the required parameter 'request' when calling ComputerUseApi.press_hotkey"
  end
  # resource path
  local_var_path = '/computeruse/keyboard/hotkey'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(request)

  # return_type
  return_type = opts[:debug_return_type] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.press_hotkey",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#press_hotkey\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#press_key(request, opts = {}) ⇒ Object

Press key Press a key with optional modifiers

Parameters:

  • request (KeyboardPressRequest)

    Key press request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Object)


773
774
775
776
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 773

def press_key(request, opts = {})
  data, _status_code, _headers = press_key_with_http_info(request, opts)
  data
end

#press_key_with_http_info(request, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Press key Press a key with optional modifiers

Parameters:

  • request (KeyboardPressRequest)

    Key press request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(Object, Integer, Hash)>)

    Object data, response status code and response headers



783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 783

def press_key_with_http_info(request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.press_key ...'
  end
  # verify the required parameter 'request' is set
  if @api_client.config.client_side_validation && request.nil?
    fail ArgumentError, "Missing the required parameter 'request' when calling ComputerUseApi.press_key"
  end
  # resource path
  local_var_path = '/computeruse/keyboard/key'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(request)

  # return_type
  return_type = opts[:debug_return_type] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.press_key",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#press_key\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#restart_process(process_name, opts = {}) ⇒ ProcessRestartResponse

Restart specific process Restart a specific computer use process

Parameters:

  • process_name (String)

    Process name to restart

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



841
842
843
844
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 841

def restart_process(process_name, opts = {})
  data, _status_code, _headers = restart_process_with_http_info(process_name, opts)
  data
end

#restart_process_with_http_info(process_name, opts = {}) ⇒ Array<(ProcessRestartResponse, Integer, Hash)>

Restart specific process Restart a specific computer use process

Parameters:

  • process_name (String)

    Process name to restart

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ProcessRestartResponse, Integer, Hash)>)

    ProcessRestartResponse data, response status code and response headers



851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 851

def restart_process_with_http_info(process_name, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.restart_process ...'
  end
  # verify the required parameter 'process_name' is set
  if @api_client.config.client_side_validation && process_name.nil?
    fail ArgumentError, "Missing the required parameter 'process_name' when calling ComputerUseApi.restart_process"
  end
  # resource path
  local_var_path = '/computeruse/process/{processName}/restart'.sub('{' + 'processName' + '}', CGI.escape(process_name.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ProcessRestartResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.restart_process",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#restart_process\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#scroll(request, opts = {}) ⇒ ScrollResponse

Scroll mouse wheel Scroll the mouse wheel at the specified coordinates

Parameters:

  • request (MouseScrollRequest)

    Mouse scroll request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



904
905
906
907
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 904

def scroll(request, opts = {})
  data, _status_code, _headers = scroll_with_http_info(request, opts)
  data
end

#scroll_with_http_info(request, opts = {}) ⇒ Array<(ScrollResponse, Integer, Hash)>

Scroll mouse wheel Scroll the mouse wheel at the specified coordinates

Parameters:

  • request (MouseScrollRequest)

    Mouse scroll request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ScrollResponse, Integer, Hash)>)

    ScrollResponse data, response status code and response headers



914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 914

def scroll_with_http_info(request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.scroll ...'
  end
  # verify the required parameter 'request' is set
  if @api_client.config.client_side_validation && request.nil?
    fail ArgumentError, "Missing the required parameter 'request' when calling ComputerUseApi.scroll"
  end
  # resource path
  local_var_path = '/computeruse/mouse/scroll'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(request)

  # return_type
  return_type = opts[:debug_return_type] || 'ScrollResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.scroll",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#scroll\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#start_computer_use(opts = {}) ⇒ ComputerUseStartResponse

Start computer use processes Start all computer use processes and return their status

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



971
972
973
974
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 971

def start_computer_use(opts = {})
  data, _status_code, _headers = start_computer_use_with_http_info(opts)
  data
end

#start_computer_use_with_http_info(opts = {}) ⇒ Array<(ComputerUseStartResponse, Integer, Hash)>

Start computer use processes Start all computer use processes and return their status

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ComputerUseStartResponse, Integer, Hash)>)

    ComputerUseStartResponse data, response status code and response headers



980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 980

def start_computer_use_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.start_computer_use ...'
  end
  # resource path
  local_var_path = '/computeruse/start'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ComputerUseStartResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.start_computer_use",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#start_computer_use\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#stop_computer_use(opts = {}) ⇒ ComputerUseStopResponse

Stop computer use processes Stop all computer use processes and return their status

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:



1028
1029
1030
1031
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1028

def stop_computer_use(opts = {})
  data, _status_code, _headers = stop_computer_use_with_http_info(opts)
  data
end

#stop_computer_use_with_http_info(opts = {}) ⇒ Array<(ComputerUseStopResponse, Integer, Hash)>

Stop computer use processes Stop all computer use processes and return their status

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(ComputerUseStopResponse, Integer, Hash)>)

    ComputerUseStopResponse data, response status code and response headers



1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1037

def stop_computer_use_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.stop_computer_use ...'
  end
  # resource path
  local_var_path = '/computeruse/stop'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ComputerUseStopResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.stop_computer_use",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#stop_computer_use\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#take_compressed_region_screenshot(x, y, width, height, opts = {}) ⇒ ScreenshotResponse

Take a compressed region screenshot Take a compressed screenshot of a specific region of the screen

Parameters:

  • x (Integer)

    X coordinate of the region

  • y (Integer)

    Y coordinate of the region

  • width (Integer)

    Width of the region

  • height (Integer)

    Height of the region

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :show_cursor (Boolean)

    Whether to show cursor in screenshot

  • :format (String)

    Image format (png or jpeg)

  • :quality (Integer)

    JPEG quality (1-100)

  • :scale (Float)

    Scale factor (0.1-1.0)

Returns:



1093
1094
1095
1096
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1093

def take_compressed_region_screenshot(x, y, width, height, opts = {})
  data, _status_code, _headers = take_compressed_region_screenshot_with_http_info(x, y, width, height, opts)
  data
end

#take_compressed_region_screenshot_with_http_info(x, y, width, height, opts = {}) ⇒ Array<(ScreenshotResponse, Integer, Hash)>

Take a compressed region screenshot Take a compressed screenshot of a specific region of the screen

Parameters:

  • x (Integer)

    X coordinate of the region

  • y (Integer)

    Y coordinate of the region

  • width (Integer)

    Width of the region

  • height (Integer)

    Height of the region

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :show_cursor (Boolean)

    Whether to show cursor in screenshot

  • :format (String)

    Image format (png or jpeg)

  • :quality (Integer)

    JPEG quality (1-100)

  • :scale (Float)

    Scale factor (0.1-1.0)

Returns:

  • (Array<(ScreenshotResponse, Integer, Hash)>)

    ScreenshotResponse data, response status code and response headers



1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1110

def take_compressed_region_screenshot_with_http_info(x, y, width, height, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.take_compressed_region_screenshot ...'
  end
  # verify the required parameter 'x' is set
  if @api_client.config.client_side_validation && x.nil?
    fail ArgumentError, "Missing the required parameter 'x' when calling ComputerUseApi.take_compressed_region_screenshot"
  end
  # verify the required parameter 'y' is set
  if @api_client.config.client_side_validation && y.nil?
    fail ArgumentError, "Missing the required parameter 'y' when calling ComputerUseApi.take_compressed_region_screenshot"
  end
  # verify the required parameter 'width' is set
  if @api_client.config.client_side_validation && width.nil?
    fail ArgumentError, "Missing the required parameter 'width' when calling ComputerUseApi.take_compressed_region_screenshot"
  end
  # verify the required parameter 'height' is set
  if @api_client.config.client_side_validation && height.nil?
    fail ArgumentError, "Missing the required parameter 'height' when calling ComputerUseApi.take_compressed_region_screenshot"
  end
  # resource path
  local_var_path = '/computeruse/screenshot/region/compressed'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'x'] = x
  query_params[:'y'] = y
  query_params[:'width'] = width
  query_params[:'height'] = height
  query_params[:'showCursor'] = opts[:'show_cursor'] if !opts[:'show_cursor'].nil?
  query_params[:'format'] = opts[:'format'] if !opts[:'format'].nil?
  query_params[:'quality'] = opts[:'quality'] if !opts[:'quality'].nil?
  query_params[:'scale'] = opts[:'scale'] if !opts[:'scale'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ScreenshotResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.take_compressed_region_screenshot",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#take_compressed_region_screenshot\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#take_compressed_screenshot(opts = {}) ⇒ ScreenshotResponse

Take a compressed screenshot Take a compressed screenshot of the entire screen

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :show_cursor (Boolean)

    Whether to show cursor in screenshot

  • :format (String)

    Image format (png or jpeg)

  • :quality (Integer)

    JPEG quality (1-100)

  • :scale (Float)

    Scale factor (0.1-1.0)

Returns:



1186
1187
1188
1189
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1186

def take_compressed_screenshot(opts = {})
  data, _status_code, _headers = take_compressed_screenshot_with_http_info(opts)
  data
end

#take_compressed_screenshot_with_http_info(opts = {}) ⇒ Array<(ScreenshotResponse, Integer, Hash)>

Take a compressed screenshot Take a compressed screenshot of the entire screen

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :show_cursor (Boolean)

    Whether to show cursor in screenshot

  • :format (String)

    Image format (png or jpeg)

  • :quality (Integer)

    JPEG quality (1-100)

  • :scale (Float)

    Scale factor (0.1-1.0)

Returns:

  • (Array<(ScreenshotResponse, Integer, Hash)>)

    ScreenshotResponse data, response status code and response headers



1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1199

def take_compressed_screenshot_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.take_compressed_screenshot ...'
  end
  # resource path
  local_var_path = '/computeruse/screenshot/compressed'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'showCursor'] = opts[:'show_cursor'] if !opts[:'show_cursor'].nil?
  query_params[:'format'] = opts[:'format'] if !opts[:'format'].nil?
  query_params[:'quality'] = opts[:'quality'] if !opts[:'quality'].nil?
  query_params[:'scale'] = opts[:'scale'] if !opts[:'scale'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ScreenshotResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.take_compressed_screenshot",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#take_compressed_screenshot\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#take_region_screenshot(x, y, width, height, opts = {}) ⇒ ScreenshotResponse

Take a region screenshot Take a screenshot of a specific region of the screen

Parameters:

  • x (Integer)

    X coordinate of the region

  • y (Integer)

    Y coordinate of the region

  • width (Integer)

    Width of the region

  • height (Integer)

    Height of the region

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :show_cursor (Boolean)

    Whether to show cursor in screenshot

Returns:



1256
1257
1258
1259
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1256

def take_region_screenshot(x, y, width, height, opts = {})
  data, _status_code, _headers = take_region_screenshot_with_http_info(x, y, width, height, opts)
  data
end

#take_region_screenshot_with_http_info(x, y, width, height, opts = {}) ⇒ Array<(ScreenshotResponse, Integer, Hash)>

Take a region screenshot Take a screenshot of a specific region of the screen

Parameters:

  • x (Integer)

    X coordinate of the region

  • y (Integer)

    Y coordinate of the region

  • width (Integer)

    Width of the region

  • height (Integer)

    Height of the region

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :show_cursor (Boolean)

    Whether to show cursor in screenshot

Returns:

  • (Array<(ScreenshotResponse, Integer, Hash)>)

    ScreenshotResponse data, response status code and response headers



1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1270

def take_region_screenshot_with_http_info(x, y, width, height, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.take_region_screenshot ...'
  end
  # verify the required parameter 'x' is set
  if @api_client.config.client_side_validation && x.nil?
    fail ArgumentError, "Missing the required parameter 'x' when calling ComputerUseApi.take_region_screenshot"
  end
  # verify the required parameter 'y' is set
  if @api_client.config.client_side_validation && y.nil?
    fail ArgumentError, "Missing the required parameter 'y' when calling ComputerUseApi.take_region_screenshot"
  end
  # verify the required parameter 'width' is set
  if @api_client.config.client_side_validation && width.nil?
    fail ArgumentError, "Missing the required parameter 'width' when calling ComputerUseApi.take_region_screenshot"
  end
  # verify the required parameter 'height' is set
  if @api_client.config.client_side_validation && height.nil?
    fail ArgumentError, "Missing the required parameter 'height' when calling ComputerUseApi.take_region_screenshot"
  end
  # resource path
  local_var_path = '/computeruse/screenshot/region'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'x'] = x
  query_params[:'y'] = y
  query_params[:'width'] = width
  query_params[:'height'] = height
  query_params[:'showCursor'] = opts[:'show_cursor'] if !opts[:'show_cursor'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ScreenshotResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.take_region_screenshot",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#take_region_screenshot\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#take_screenshot(opts = {}) ⇒ ScreenshotResponse

Take a screenshot Take a screenshot of the entire screen

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :show_cursor (Boolean)

    Whether to show cursor in screenshot

Returns:



1340
1341
1342
1343
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1340

def take_screenshot(opts = {})
  data, _status_code, _headers = take_screenshot_with_http_info(opts)
  data
end

#take_screenshot_with_http_info(opts = {}) ⇒ Array<(ScreenshotResponse, Integer, Hash)>

Take a screenshot Take a screenshot of the entire screen

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :show_cursor (Boolean)

    Whether to show cursor in screenshot

Returns:

  • (Array<(ScreenshotResponse, Integer, Hash)>)

    ScreenshotResponse data, response status code and response headers



1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1350

def take_screenshot_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.take_screenshot ...'
  end
  # resource path
  local_var_path = '/computeruse/screenshot'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'showCursor'] = opts[:'show_cursor'] if !opts[:'show_cursor'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'ScreenshotResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.take_screenshot",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#take_screenshot\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#type_text(request, opts = {}) ⇒ Object

Type text Type text with optional delay between keystrokes

Parameters:

  • request (KeyboardTypeRequest)

    Text typing request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Object)


1400
1401
1402
1403
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1400

def type_text(request, opts = {})
  data, _status_code, _headers = type_text_with_http_info(request, opts)
  data
end

#type_text_with_http_info(request, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Type text Type text with optional delay between keystrokes

Parameters:

  • request (KeyboardTypeRequest)

    Text typing request

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(Object, Integer, Hash)>)

    Object data, response status code and response headers



1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1410

def type_text_with_http_info(request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.type_text ...'
  end
  # verify the required parameter 'request' is set
  if @api_client.config.client_side_validation && request.nil?
    fail ArgumentError, "Missing the required parameter 'request' when calling ComputerUseApi.type_text"
  end
  # resource path
  local_var_path = '/computeruse/keyboard/type'

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
    header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(request)

  # return_type
  return_type = opts[:debug_return_type] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || []

  new_options = opts.merge(
    :operation => :"ComputerUseApi.type_text",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#type_text\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end