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

#delete_recording(id, opts = {}) ⇒ nil

Delete a recording Delete a recording file by ID

Parameters:

  • id (String)

    Recording ID

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

    the optional parameters

Returns:

  • (nil)


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

def delete_recording(id, opts = {})
  delete_recording_with_http_info(id, opts)
  nil
end

#delete_recording_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Delete a recording Delete a recording file by ID

Parameters:

  • id (String)

    Recording ID

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

    the optional parameters

Returns:

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

    nil, 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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 105

def delete_recording_with_http_info(id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.delete_recording ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling ComputerUseApi.delete_recording"
  end
  # resource path
  local_var_path = '/computeruse/recordings/{id}'.sub('{' + 'id' + '}', CGI.escape(id.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(['*/*']) 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]

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

  new_options = opts.merge(
    :operation => :"ComputerUseApi.delete_recording",
    :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(:DELETE, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: ComputerUseApi#delete_recording\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#download_recording(id, opts = {}) ⇒ File

Download a recording Download a recording by providing its ID

Parameters:

  • id (String)

    Recording ID

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

    the optional parameters

Returns:

  • (File)


158
159
160
161
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 158

def download_recording(id, opts = {})
  data, _status_code, _headers = download_recording_with_http_info(id, opts)
  data
end

#download_recording_with_http_info(id, opts = {}) ⇒ Array<(File, Integer, Hash)>

Download a recording Download a recording by providing its ID

Parameters:

  • id (String)

    Recording ID

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

    the optional parameters

Returns:

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

    File data, response status code and response headers



168
169
170
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
214
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 168

def download_recording_with_http_info(id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.download_recording ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling ComputerUseApi.download_recording"
  end
  # resource path
  local_var_path = '/computeruse/recordings/{id}/download'.sub('{' + 'id' + '}', CGI.escape(id.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/octet-stream']) 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] || 'File'

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

  new_options = opts.merge(
    :operation => :"ComputerUseApi.download_recording",
    :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#download_recording\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:



221
222
223
224
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 221

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



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
271
272
273
274
275
276
277
278
279
280
281
282
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 231

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:



288
289
290
291
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 288

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



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
328
329
330
331
332
333
334
335
336
337
338
339
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 297

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:



345
346
347
348
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 345

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



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
385
386
387
388
389
390
391
392
393
394
395
396
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 354

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:



402
403
404
405
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 402

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



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
448
449
450
451
452
453
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 411

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:



459
460
461
462
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 459

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



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 468

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:



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

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



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_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:



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

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



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
631
632
633
634
635
636
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 590

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:



643
644
645
646
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 643

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



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
699
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 653

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_recording(id, opts = {}) ⇒ Recording

Get recording details Get details of a specific recording by ID

Parameters:

  • id (String)

    Recording ID

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

    the optional parameters

Returns:



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

def get_recording(id, opts = {})
  data, _status_code, _headers = get_recording_with_http_info(id, opts)
  data
end

#get_recording_with_http_info(id, opts = {}) ⇒ Array<(Recording, Integer, Hash)>

Get recording details Get details of a specific recording by ID

Parameters:

  • id (String)

    Recording ID

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

    the optional parameters

Returns:

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

    Recording data, response status code and response headers



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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 716

def get_recording_with_http_info(id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.get_recording ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling ComputerUseApi.get_recording"
  end
  # resource path
  local_var_path = '/computeruse/recordings/{id}'.sub('{' + 'id' + '}', CGI.escape(id.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] || 'Recording'

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

  new_options = opts.merge(
    :operation => :"ComputerUseApi.get_recording",
    :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_recording\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:



768
769
770
771
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 768

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



777
778
779
780
781
782
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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 777

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

#list_recordings(opts = {}) ⇒ ListRecordingsResponse

List all recordings Get a list of all recordings (active and completed)

Parameters:

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

    the optional parameters

Returns:



825
826
827
828
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 825

def list_recordings(opts = {})
  data, _status_code, _headers = list_recordings_with_http_info(opts)
  data
end

#list_recordings_with_http_info(opts = {}) ⇒ Array<(ListRecordingsResponse, Integer, Hash)>

List all recordings Get a list of all recordings (active and completed)

Parameters:

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

    the optional parameters

Returns:

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

    ListRecordingsResponse data, response status code and response headers



834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 834

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

  # 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] || 'ListRecordingsResponse'

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

  new_options = opts.merge(
    :operation => :"ComputerUseApi.list_recordings",
    :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#list_recordings\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:



883
884
885
886
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 883

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



893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 893

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)


951
952
953
954
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 951

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



961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 961

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)


1019
1020
1021
1022
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1019

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



1029
1030
1031
1032
1033
1034
1035
1036
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
1080
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1029

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:



1087
1088
1089
1090
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1087

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



1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1097

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:



1150
1151
1152
1153
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1150

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



1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1160

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:



1217
1218
1219
1220
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1217

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



1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1226

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

#start_recording(opts = {}) ⇒ Recording

Start a new recording Start a new screen recording session

Parameters:

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

    the optional parameters

Options Hash (opts):

Returns:



1275
1276
1277
1278
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1275

def start_recording(opts = {})
  data, _status_code, _headers = start_recording_with_http_info(opts)
  data
end

#start_recording_with_http_info(opts = {}) ⇒ Array<(Recording, Integer, Hash)>

Start a new recording Start a new screen recording session

Parameters:

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

    the optional parameters

Options Hash (opts):

Returns:

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

    Recording data, response status code and response headers



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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1285

def start_recording_with_http_info(opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.start_recording ...'
  end
  # resource path
  local_var_path = '/computeruse/recordings/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']
  # 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(opts[:'request'])

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

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

  new_options = opts.merge(
    :operation => :"ComputerUseApi.start_recording",
    :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_recording\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:



1338
1339
1340
1341
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1338

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



1347
1348
1349
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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1347

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

#stop_recording(request, opts = {}) ⇒ Recording

Stop a recording Stop an active screen recording session

Parameters:

  • request (StopRecordingRequest)

    Recording ID to stop

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

    the optional parameters

Returns:



1396
1397
1398
1399
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1396

def stop_recording(request, opts = {})
  data, _status_code, _headers = stop_recording_with_http_info(request, opts)
  data
end

#stop_recording_with_http_info(request, opts = {}) ⇒ Array<(Recording, Integer, Hash)>

Stop a recording Stop an active screen recording session

Parameters:

  • request (StopRecordingRequest)

    Recording ID to stop

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

    the optional parameters

Returns:

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

    Recording data, response status code and response headers



1406
1407
1408
1409
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
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1406

def stop_recording_with_http_info(request, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: ComputerUseApi.stop_recording ...'
  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.stop_recording"
  end
  # resource path
  local_var_path = '/computeruse/recordings/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']
  # 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] || 'Recording'

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

  new_options = opts.merge(
    :operation => :"ComputerUseApi.stop_recording",
    :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_recording\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:



1471
1472
1473
1474
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1471

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



1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1488

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:



1564
1565
1566
1567
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1564

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



1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1577

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:



1634
1635
1636
1637
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1634

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



1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1648

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:



1718
1719
1720
1721
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1718

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



1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1728

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)


1778
1779
1780
1781
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1778

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



1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
# File 'lib/daytona_toolbox_api_client/api/computer_use_api.rb', line 1788

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