cyberdesk 1.10.0__py3-none-any.whl → 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cyberdesk might be problematic. Click here for more details.

Files changed (51) hide show
  1. cyberdesk/__init__.py +1 -1
  2. cyberdesk/client.py +59 -0
  3. {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/METADATA +1 -1
  4. {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/RECORD +51 -47
  5. openapi_client/cyberdesk_cloud_client/api/connections/create_connection_v1_connections_post.py +4 -4
  6. openapi_client/cyberdesk_cloud_client/api/connections/delete_connection_v1_connections_connection_id_delete.py +4 -4
  7. openapi_client/cyberdesk_cloud_client/api/connections/get_connection_v1_connections_connection_id_get.py +4 -4
  8. openapi_client/cyberdesk_cloud_client/api/connections/list_connections_v1_connections_get.py +4 -4
  9. openapi_client/cyberdesk_cloud_client/api/connections/update_connection_v1_connections_connection_id_patch.py +4 -4
  10. openapi_client/cyberdesk_cloud_client/api/machines/create_machine_v1_machines_post.py +4 -4
  11. openapi_client/cyberdesk_cloud_client/api/machines/delete_machine_v1_machines_machine_id_delete.py +4 -4
  12. openapi_client/cyberdesk_cloud_client/api/machines/get_machine_v1_machines_machine_id_get.py +4 -4
  13. openapi_client/cyberdesk_cloud_client/api/machines/list_machines_v1_machines_get.py +4 -4
  14. openapi_client/cyberdesk_cloud_client/api/machines/update_machine_v1_machines_machine_id_patch.py +4 -4
  15. openapi_client/cyberdesk_cloud_client/api/request_logs/create_request_log_v1_request_logs_post.py +4 -4
  16. openapi_client/cyberdesk_cloud_client/api/request_logs/delete_request_log_v1_request_logs_log_id_delete.py +4 -4
  17. openapi_client/cyberdesk_cloud_client/api/request_logs/get_request_log_v1_request_logs_log_id_get.py +4 -4
  18. openapi_client/cyberdesk_cloud_client/api/request_logs/list_request_logs_v1_request_logs_get.py +4 -4
  19. openapi_client/cyberdesk_cloud_client/api/request_logs/update_request_log_v1_request_logs_log_id_patch.py +4 -4
  20. openapi_client/cyberdesk_cloud_client/api/run_attachments/list_run_attachments_v1_run_attachments_get.py +4 -4
  21. openapi_client/cyberdesk_cloud_client/api/runs/bulk_create_runs_v1_runs_bulk_post.py +200 -0
  22. openapi_client/cyberdesk_cloud_client/api/runs/create_run_v1_runs_post.py +12 -8
  23. openapi_client/cyberdesk_cloud_client/api/runs/delete_run_v1_runs_run_id_delete.py +8 -4
  24. openapi_client/cyberdesk_cloud_client/api/runs/get_run_v1_runs_run_id_get.py +4 -4
  25. openapi_client/cyberdesk_cloud_client/api/runs/list_runs_v1_runs_get.py +4 -4
  26. openapi_client/cyberdesk_cloud_client/api/runs/update_run_v1_runs_run_id_patch.py +8 -12
  27. openapi_client/cyberdesk_cloud_client/api/trajectories/create_trajectory_v1_trajectories_post.py +4 -4
  28. openapi_client/cyberdesk_cloud_client/api/trajectories/delete_trajectory_v1_trajectories_trajectory_id_delete.py +4 -4
  29. openapi_client/cyberdesk_cloud_client/api/trajectories/get_latest_trajectory_for_workflow_v1_workflows_workflow_id_latest_trajectory_get.py +4 -4
  30. openapi_client/cyberdesk_cloud_client/api/trajectories/get_trajectory_v1_trajectories_trajectory_id_get.py +4 -4
  31. openapi_client/cyberdesk_cloud_client/api/trajectories/list_trajectories_v1_trajectories_get.py +4 -4
  32. openapi_client/cyberdesk_cloud_client/api/trajectories/update_trajectory_v1_trajectories_trajectory_id_patch.py +4 -4
  33. openapi_client/cyberdesk_cloud_client/api/workflows/create_workflow_v1_workflows_post.py +4 -4
  34. openapi_client/cyberdesk_cloud_client/api/workflows/delete_workflow_v1_workflows_workflow_id_delete.py +4 -4
  35. openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_v1_workflows_workflow_id_get.py +4 -4
  36. openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_versions_v1_workflows_workflow_id_versions_get.py +4 -4
  37. openapi_client/cyberdesk_cloud_client/api/workflows/list_workflows_v1_workflows_get.py +4 -4
  38. openapi_client/cyberdesk_cloud_client/api/workflows/update_workflow_v1_workflows_workflow_id_patch.py +4 -4
  39. openapi_client/cyberdesk_cloud_client/models/__init__.py +6 -0
  40. openapi_client/cyberdesk_cloud_client/models/machine_response.py +50 -8
  41. openapi_client/cyberdesk_cloud_client/models/request_log_response.py +20 -0
  42. openapi_client/cyberdesk_cloud_client/models/run_attachment_response.py +50 -8
  43. openapi_client/cyberdesk_cloud_client/models/run_bulk_create.py +181 -0
  44. openapi_client/cyberdesk_cloud_client/models/run_bulk_create_input_values_type_0.py +44 -0
  45. openapi_client/cyberdesk_cloud_client/models/run_bulk_create_response.py +96 -0
  46. openapi_client/cyberdesk_cloud_client/models/run_response.py +51 -8
  47. openapi_client/cyberdesk_cloud_client/models/trajectory_response.py +50 -8
  48. openapi_client/cyberdesk_cloud_client/models/workflow_response.py +50 -8
  49. {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/WHEEL +0 -0
  50. {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/licenses/LICENSE +0 -0
  51. {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/top_level.txt +0 -0
cyberdesk/__init__.py CHANGED
@@ -27,7 +27,7 @@ from .client import (
27
27
  AttachmentType,
28
28
  )
29
29
 
30
- __version__ = "1.10.0"
30
+ __version__ = "2.0.0"
31
31
 
32
32
  __all__ = [
33
33
  "CyberdeskClient",
cyberdesk/client.py CHANGED
@@ -28,6 +28,7 @@ from openapi_client.cyberdesk_cloud_client.api.runs import (
28
28
  get_run_v1_runs_run_id_get,
29
29
  update_run_v1_runs_run_id_patch,
30
30
  delete_run_v1_runs_run_id_delete,
31
+ bulk_create_runs_v1_runs_bulk_post,
31
32
  )
32
33
  from openapi_client.cyberdesk_cloud_client.api.connections import (
33
34
  list_connections_v1_connections_get,
@@ -64,6 +65,8 @@ from openapi_client.cyberdesk_cloud_client.models import (
64
65
  RunUpdate,
65
66
  RunResponse,
66
67
  RunStatus,
68
+ RunBulkCreate,
69
+ RunBulkCreateResponse,
67
70
  FileInput,
68
71
  ConnectionCreate,
69
72
  ConnectionResponse,
@@ -98,6 +101,8 @@ __all__ = [
98
101
  "RunUpdate",
99
102
  "RunResponse",
100
103
  "RunStatus",
104
+ "RunBulkCreate",
105
+ "RunBulkCreateResponse",
101
106
  "FileInput",
102
107
  "ConnectionCreate",
103
108
  "ConnectionResponse",
@@ -527,6 +532,60 @@ class RunsAPI:
527
532
  return ApiResponse(data={"success": True})
528
533
  except Exception as e:
529
534
  return ApiResponse(error=e)
535
+
536
+ async def bulk_create(self, data: RunBulkCreate) -> ApiResponse:
537
+ """Create multiple runs with the same configuration.
538
+
539
+ This method efficiently creates multiple runs:
540
+ - All runs are created in a single database transaction
541
+ - Temporal workflows are started asynchronously
542
+ - Returns immediately with created run details
543
+
544
+ Args:
545
+ data: RunBulkCreate object containing workflow_id, machine_id,
546
+ input_values, file_inputs, and count (max 1000)
547
+
548
+ Returns:
549
+ ApiResponse with RunBulkCreateResponse containing:
550
+ - created_runs: List of created RunResponse objects
551
+ - failed_count: Number of runs that failed to create
552
+ - errors: List of error messages for failed runs
553
+ """
554
+ try:
555
+ response = await bulk_create_runs_v1_runs_bulk_post.asyncio(
556
+ client=self.client,
557
+ body=data
558
+ )
559
+ return ApiResponse(data=response)
560
+ except Exception as e:
561
+ return ApiResponse(error=e)
562
+
563
+ def bulk_create_sync(self, data: RunBulkCreate) -> ApiResponse:
564
+ """Create multiple runs with the same configuration (synchronous).
565
+
566
+ This method efficiently creates multiple runs:
567
+ - All runs are created in a single database transaction
568
+ - Temporal workflows are started asynchronously
569
+ - Returns immediately with created run details
570
+
571
+ Args:
572
+ data: RunBulkCreate object containing workflow_id, machine_id,
573
+ input_values, file_inputs, and count (max 1000)
574
+
575
+ Returns:
576
+ ApiResponse with RunBulkCreateResponse containing:
577
+ - created_runs: List of created RunResponse objects
578
+ - failed_count: Number of runs that failed to create
579
+ - errors: List of error messages for failed runs
580
+ """
581
+ try:
582
+ response = bulk_create_runs_v1_runs_bulk_post.sync(
583
+ client=self.client,
584
+ body=data
585
+ )
586
+ return ApiResponse(data=response)
587
+ except Exception as e:
588
+ return ApiResponse(error=e)
530
589
 
531
590
 
532
591
  class ConnectionsAPI:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cyberdesk
3
- Version: 1.10.0
3
+ Version: 2.0.0
4
4
  Summary: The official Python SDK for Cyberdesk
5
5
  Author-email: Cyberdesk Team <dev@cyberdesk.io>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
- cyberdesk/__init__.py,sha256=fEL8e-_YJA8OxkB9SfeJoKcBWH6EIJofGRQMGObdB_A,1158
2
- cyberdesk/client.py,sha256=hb6SwdYuV7wyGSwLjmiUfg31O3TXkqYkbSPPtZAprS8,41730
3
- cyberdesk-1.10.0.dist-info/licenses/LICENSE,sha256=06Op63FCwGhuUOz__M8IZW5sxd29WxyGC4X5-Uih7IQ,1071
1
+ cyberdesk/__init__.py,sha256=mOhlL-zLpqcEO7QCLybSpmRFgUrpT4-0IeqX0sMXcjs,1157
2
+ cyberdesk/client.py,sha256=UkpItVaLFrhM7VoBndT1vBiZk6RrECy9segb4QCj9j4,44114
3
+ cyberdesk-2.0.0.dist-info/licenses/LICENSE,sha256=06Op63FCwGhuUOz__M8IZW5sxd29WxyGC4X5-Uih7IQ,1071
4
4
  openapi_client/cyberdesk_cloud_client/__init__.py,sha256=r_uVkNUL-SOK8j7-KiGMIKdinES5X8K1Q250ySX2F-A,158
5
5
  openapi_client/cyberdesk_cloud_client/client.py,sha256=o_mdLqyBCQstu5tS1WZFwqIEbGwkvWQ7eQjuCJw_5VY,12419
6
6
  openapi_client/cyberdesk_cloud_client/errors.py,sha256=gO8GBmKqmSNgAg-E5oT-oOyxztvp7V_6XG7OUTT15q0,546
@@ -21,59 +21,60 @@ openapi_client/cyberdesk_cloud_client/api/computer/mouse_move_v1_computer_machin
21
21
  openapi_client/cyberdesk_cloud_client/api/computer/powershell_exec_v1_computer_machine_id_shell_powershell_exec_post.py,sha256=iZCvu92FFTVAZfIkw-PIWPllUe4NRuAdjB63IasSxKw,6567
22
22
  openapi_client/cyberdesk_cloud_client/api/computer/powershell_session_v1_computer_machine_id_shell_powershell_session_post.py,sha256=Bw-zP9ekElWvHbfts1bGfZX6mkEfrNwZ-A9rajAuzYM,6799
23
23
  openapi_client/cyberdesk_cloud_client/api/connections/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
24
- openapi_client/cyberdesk_cloud_client/api/connections/create_connection_v1_connections_post.py,sha256=063OBpx_Hgn5A9kKINc9kD4emMDLPR23acamQ8sBGBY,5046
25
- openapi_client/cyberdesk_cloud_client/api/connections/delete_connection_v1_connections_connection_id_delete.py,sha256=-eiGKQa9Y2RW3zKsdygsAt636YyCVoy30DUdu6ce6yE,4653
26
- openapi_client/cyberdesk_cloud_client/api/connections/get_connection_v1_connections_connection_id_get.py,sha256=_UbfT-6fcRM5l-pg66T9knVYWsPA4IOLr8ykF60Euh0,4678
27
- openapi_client/cyberdesk_cloud_client/api/connections/list_connections_v1_connections_get.py,sha256=1w9ZUJEn_2S3YqjAUZF-pN-BchDD2P7CWXTTeIIVzP8,7872
28
- openapi_client/cyberdesk_cloud_client/api/connections/update_connection_v1_connections_connection_id_patch.py,sha256=cBW61z9FsLnlUW43QaYAIy0IsTFzNuICNTgi6a5GahE,5703
24
+ openapi_client/cyberdesk_cloud_client/api/connections/create_connection_v1_connections_post.py,sha256=8aVBEBUZXRvFlC_0MiyMfc1LfgPXhz5F2QC7-yVbGBk,5078
25
+ openapi_client/cyberdesk_cloud_client/api/connections/delete_connection_v1_connections_connection_id_delete.py,sha256=j00S1lvXIKk-afVYddgwNtGjoXsekTDG5Uwf-q9r1gI,4685
26
+ openapi_client/cyberdesk_cloud_client/api/connections/get_connection_v1_connections_connection_id_get.py,sha256=sZ29gvZPn6Rn9ihD8hSek_2hT0A2w43NLr7B_I1HNAw,4710
27
+ openapi_client/cyberdesk_cloud_client/api/connections/list_connections_v1_connections_get.py,sha256=_Q2lzJnx-P7lOWoEzf4BbggDrpPmoHmfpxGQCL_oQFA,7904
28
+ openapi_client/cyberdesk_cloud_client/api/connections/update_connection_v1_connections_connection_id_patch.py,sha256=TchNjqT0iaL7EfM4PXhAKKpAUPmX7j4x1Zp86-0CdqI,5735
29
29
  openapi_client/cyberdesk_cloud_client/api/default/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
30
30
  openapi_client/cyberdesk_cloud_client/api/default/root_get.py,sha256=Wba5aa7-F_8KDoW6hjr4yRWtftT42lTUrNzMlhmBc8A,2153
31
31
  openapi_client/cyberdesk_cloud_client/api/health/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
32
32
  openapi_client/cyberdesk_cloud_client/api/health/database_health_check_v1_health_db_get.py,sha256=uxeoQZ9HTbG-MsUC4iod-IbF3Zg0fhcRSanN0fu5krc,4464
33
33
  openapi_client/cyberdesk_cloud_client/api/health/health_check_v1_health_get.py,sha256=Lv0XTq99x8W9suZ-haArPlEfzNGNw99rfY-VJmXbSss,4111
34
34
  openapi_client/cyberdesk_cloud_client/api/machines/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
35
- openapi_client/cyberdesk_cloud_client/api/machines/create_machine_v1_machines_post.py,sha256=Z8IRAgihoV6t8w_sigNwSbhTNBYJusS5kXf6Jj4nOvQ,4763
36
- openapi_client/cyberdesk_cloud_client/api/machines/delete_machine_v1_machines_machine_id_delete.py,sha256=JJLXjt0b27W_nXTgc_7hu9rLmG_2595c0UvOYQ3mwKk,4552
37
- openapi_client/cyberdesk_cloud_client/api/machines/get_machine_v1_machines_machine_id_get.py,sha256=gCg0S4-ofZXTEJr0LZnVyVQZINxJzfT-uwlP3w0Vwoo,4470
38
- openapi_client/cyberdesk_cloud_client/api/machines/list_machines_v1_machines_get.py,sha256=B5QGXMfIMLa_0_JJdKWFAS6pVZnhGPxF91cO0RrkxG0,6467
39
- openapi_client/cyberdesk_cloud_client/api/machines/update_machine_v1_machines_machine_id_patch.py,sha256=qWlvxsepE1dOcISrzb4NSdK_EpTQdzgUaPX6HP9Lil0,5414
35
+ openapi_client/cyberdesk_cloud_client/api/machines/create_machine_v1_machines_post.py,sha256=4AxFmCuNy7Hqcua9TCeK67-BSXmUTIJ1iVYPVr4_dPs,4795
36
+ openapi_client/cyberdesk_cloud_client/api/machines/delete_machine_v1_machines_machine_id_delete.py,sha256=-P8TqtFvPBL47vjx6cpaFNugHGOWirzSHPMzJxHCT1w,4584
37
+ openapi_client/cyberdesk_cloud_client/api/machines/get_machine_v1_machines_machine_id_get.py,sha256=ygavJyYWH59YYO9nwjWItmjYxNf3-jer138RUqscFpM,4502
38
+ openapi_client/cyberdesk_cloud_client/api/machines/list_machines_v1_machines_get.py,sha256=fD9qvJ4MwjrZPqCDRwLO0dy7emSNSczXTSrplx_TjWE,6499
39
+ openapi_client/cyberdesk_cloud_client/api/machines/update_machine_v1_machines_machine_id_patch.py,sha256=8dqEUZaTMLAIbDSrZ7lzAHsU_CecWkzpoSwVoZ5aTMk,5446
40
40
  openapi_client/cyberdesk_cloud_client/api/request_logs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
41
- openapi_client/cyberdesk_cloud_client/api/request_logs/create_request_log_v1_request_logs_post.py,sha256=d7i7FsfCdOTLn5JPTx_jyqfToEa7Kkym1EO6RYhP_Xc,5125
42
- openapi_client/cyberdesk_cloud_client/api/request_logs/delete_request_log_v1_request_logs_log_id_delete.py,sha256=tn8aMwAuNTcCUy5MeCynyTRvjhcP1Qiz9je0QaIc88Q,4468
43
- openapi_client/cyberdesk_cloud_client/api/request_logs/get_request_log_v1_request_logs_log_id_get.py,sha256=ooWgn9o_AGVP2EEPQjCAkOmcy4-jF42s2ocTKPU4O2o,4534
44
- openapi_client/cyberdesk_cloud_client/api/request_logs/list_request_logs_v1_request_logs_get.py,sha256=_CpUhLbesyefEaC5X_NeKWe3DTjILMDmn28eWrUYvVE,8076
45
- openapi_client/cyberdesk_cloud_client/api/request_logs/update_request_log_v1_request_logs_log_id_patch.py,sha256=7PGcu1GnN3EEkPo6cAZO45qRqd5cxK2Ge_rBp0__nfQ,5880
41
+ openapi_client/cyberdesk_cloud_client/api/request_logs/create_request_log_v1_request_logs_post.py,sha256=pYWsEho0fFAik-XtQmLXky1KAYMSvM-kozREYW3NYcc,5157
42
+ openapi_client/cyberdesk_cloud_client/api/request_logs/delete_request_log_v1_request_logs_log_id_delete.py,sha256=8HWp4-MCAG77-R0-i3Joi0unfCCLtasMjJUpf6KiFG0,4500
43
+ openapi_client/cyberdesk_cloud_client/api/request_logs/get_request_log_v1_request_logs_log_id_get.py,sha256=UHzHr035K7g7OgLdB4wd0qjt8wEcZAqAnFEVLmbmrfI,4566
44
+ openapi_client/cyberdesk_cloud_client/api/request_logs/list_request_logs_v1_request_logs_get.py,sha256=DR6WYLnufrNcBtCTmyVx0egitnWgZRyo2XaeS9BWC0g,8108
45
+ openapi_client/cyberdesk_cloud_client/api/request_logs/update_request_log_v1_request_logs_log_id_patch.py,sha256=t8Rec5lsy8pwF6oZzG2pQA7B0dXIEAIfeX6Gx5UGEr4,5912
46
46
  openapi_client/cyberdesk_cloud_client/api/run_attachments/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
47
47
  openapi_client/cyberdesk_cloud_client/api/run_attachments/create_run_attachment_v1_run_attachments_post.py,sha256=DTcoKhj8uflj1FUJAIKrVhbCXaQIjjWH3ZpijDJZdJI,5216
48
48
  openapi_client/cyberdesk_cloud_client/api/run_attachments/delete_run_attachment_v1_run_attachments_attachment_id_delete.py,sha256=BUamhNNCzRL_irucvhvlOxkqnOxNv0wUUDUrHvmnDc0,4465
49
49
  openapi_client/cyberdesk_cloud_client/api/run_attachments/download_run_attachment_v1_run_attachments_attachment_id_download_get.py,sha256=CGqC2lCQK1AbGCsIq2sA5PS8b1oA0VV5ysYvORuF8FY,4405
50
50
  openapi_client/cyberdesk_cloud_client/api/run_attachments/get_run_attachment_download_url_v1_run_attachments_attachment_id_download_url_get.py,sha256=99FZWvi6f0Wlwd2SxFoudbH5t9H57lw1LMWFhf4J408,6560
51
51
  openapi_client/cyberdesk_cloud_client/api/run_attachments/get_run_attachment_v1_run_attachments_attachment_id_get.py,sha256=9Rkn4y-3mh-SMEnmvPLeo34Hhp9Bsk_Wb7sWw1xeDhA,4786
52
- openapi_client/cyberdesk_cloud_client/api/run_attachments/list_run_attachments_v1_run_attachments_get.py,sha256=LGcoHCLkujfTHgwzapuYV8Ve8y4yw_VZ3jkSK5Rt91o,7783
52
+ openapi_client/cyberdesk_cloud_client/api/run_attachments/list_run_attachments_v1_run_attachments_get.py,sha256=ZcPnDPg7wu1Q9Wyj4tWej2GRj7_w_oOItv2vmUf71i8,7815
53
53
  openapi_client/cyberdesk_cloud_client/api/run_attachments/update_run_attachment_v1_run_attachments_attachment_id_put.py,sha256=4jsIek-Z4U5hbKHRMBsnJr0DgfOoY5B2sC22d5Af-UU,5395
54
54
  openapi_client/cyberdesk_cloud_client/api/runs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
55
- openapi_client/cyberdesk_cloud_client/api/runs/create_run_v1_runs_post.py,sha256=WarcoB_UIzZsTcvFGWAYZhjA0LsIY4wcP89wILtsTZs,5343
56
- openapi_client/cyberdesk_cloud_client/api/runs/delete_run_v1_runs_run_id_delete.py,sha256=ux5K74BTi5jarECVfTc5AxgAhDPfuFkt1XmaWWmRdLE,4116
57
- openapi_client/cyberdesk_cloud_client/api/runs/get_run_v1_runs_run_id_get.py,sha256=tWXVlLtiWl3XmAPQf4_V0SzPoenVKazWSiL4afDEmwE,4562
58
- openapi_client/cyberdesk_cloud_client/api/runs/list_runs_v1_runs_get.py,sha256=PJwEgUNMCIBceQ1SajDk5TWTMxbVZMaO3dr2Ujd22MU,8598
59
- openapi_client/cyberdesk_cloud_client/api/runs/update_run_v1_runs_run_id_patch.py,sha256=chYVZetLivmzG_E95TNZ_CYgrfamN9kRv3n1DqKj25M,5538
55
+ openapi_client/cyberdesk_cloud_client/api/runs/bulk_create_runs_v1_runs_bulk_post.py,sha256=e89ThcQxPj-PZBzyieS4SC4kswup9aKBSsc3K8btN3U,5809
56
+ openapi_client/cyberdesk_cloud_client/api/runs/create_run_v1_runs_post.py,sha256=GhCe-A0JxVWvTgzA4AyKEJQOlem0uzttLmXBxRLlUys,5451
57
+ openapi_client/cyberdesk_cloud_client/api/runs/delete_run_v1_runs_run_id_delete.py,sha256=dOGd7lAPd9SBn9-13zhTx-wTtM6YQvT3WspjIQjOhHg,4428
58
+ openapi_client/cyberdesk_cloud_client/api/runs/get_run_v1_runs_run_id_get.py,sha256=4mPvnOtAICVqzyXbD5Gdtqq_f1ardg7WpseT8RI3mwQ,4594
59
+ openapi_client/cyberdesk_cloud_client/api/runs/list_runs_v1_runs_get.py,sha256=CXGk9-yOCaB1tlqa6VXhmi9IghXGi_MYTZJ5zzW6NdQ,8630
60
+ openapi_client/cyberdesk_cloud_client/api/runs/update_run_v1_runs_run_id_patch.py,sha256=8m2VaIjCilDkmkzgZ1D7JfNScDqgNRheaaUcuMqPibQ,5182
60
61
  openapi_client/cyberdesk_cloud_client/api/test/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
61
62
  openapi_client/cyberdesk_cloud_client/api/test/dummy_test_endpoint_v1_test_post.py,sha256=sxmvHugxdpK3jb8jmjUfo-pbzmmNU92C-Ze8quxSWC8,4642
62
63
  openapi_client/cyberdesk_cloud_client/api/trajectories/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
63
- openapi_client/cyberdesk_cloud_client/api/trajectories/create_trajectory_v1_trajectories_post.py,sha256=9a0H8wVXCTD9NU9aHIu25uRv38ukhf8Mtc9PEblYUYU,5167
64
- openapi_client/cyberdesk_cloud_client/api/trajectories/delete_trajectory_v1_trajectories_trajectory_id_delete.py,sha256=A9l3PVeIys8PcGKxlTVC3ynIIBaWDLeit--aF3fEEx0,4334
65
- openapi_client/cyberdesk_cloud_client/api/trajectories/get_latest_trajectory_for_workflow_v1_workflows_workflow_id_latest_trajectory_get.py,sha256=JuV5Uk34xp4jXNv-Av3g9VRTLPEpZpAqZqwgMQXh_xQ,4994
66
- openapi_client/cyberdesk_cloud_client/api/trajectories/get_trajectory_v1_trajectories_trajectory_id_get.py,sha256=TDC94aElIe-vgCMPe6HAHxs9cXbJMKx7EhxPBRmxLnA,4851
67
- openapi_client/cyberdesk_cloud_client/api/trajectories/list_trajectories_v1_trajectories_get.py,sha256=kkQUtDgInYDMJJ5TRVorzYSnzsR1jX9fQ624AzOEn2w,6801
68
- openapi_client/cyberdesk_cloud_client/api/trajectories/update_trajectory_v1_trajectories_trajectory_id_patch.py,sha256=WRORvssODbwPiSxoIWbqbr7vnou8MXmJ-jVrw5EGxsU,5564
64
+ openapi_client/cyberdesk_cloud_client/api/trajectories/create_trajectory_v1_trajectories_post.py,sha256=QN4uGKL30vh_tAOeySOy1c_c1NFQbbQXLfwQDBe1hBE,5199
65
+ openapi_client/cyberdesk_cloud_client/api/trajectories/delete_trajectory_v1_trajectories_trajectory_id_delete.py,sha256=uvWcVq-VsklflJd47OKsYszIXNFPu0YCAADo8NHmTR4,4366
66
+ openapi_client/cyberdesk_cloud_client/api/trajectories/get_latest_trajectory_for_workflow_v1_workflows_workflow_id_latest_trajectory_get.py,sha256=kFsYg3Jx13x56TrHCVuM7yzPBWKVBwZPklSxqELx1Fc,5026
67
+ openapi_client/cyberdesk_cloud_client/api/trajectories/get_trajectory_v1_trajectories_trajectory_id_get.py,sha256=d3cTp_hEThXejqxsdnRg1QhVoSMGMO1cLdeUG1vy7oo,4883
68
+ openapi_client/cyberdesk_cloud_client/api/trajectories/list_trajectories_v1_trajectories_get.py,sha256=1Px0RjH7Bjse4yXKjGJ04fa5RvFioy2XVyAvI5QBdFo,6833
69
+ openapi_client/cyberdesk_cloud_client/api/trajectories/update_trajectory_v1_trajectories_trajectory_id_patch.py,sha256=s3S6I24Tsf1nTByOf3bNw88WAfo6ogdo_PG7AjDbl-Q,5596
69
70
  openapi_client/cyberdesk_cloud_client/api/workflows/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
70
- openapi_client/cyberdesk_cloud_client/api/workflows/create_workflow_v1_workflows_post.py,sha256=0ptBDTpsYfjvy8PkA-pFtdnu1UW1l1GD8eA37qMqe70,4804
71
- openapi_client/cyberdesk_cloud_client/api/workflows/delete_workflow_v1_workflows_workflow_id_delete.py,sha256=slpa1XsN02Sfo8fFqZ7BNkxuwYKhDUXa7vj7jRB3cDo,4527
72
- openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_v1_workflows_workflow_id_get.py,sha256=qwQ8pv1RbNPhDpzBQwOyDgYeJCZw-4q2STWu57RLQVA,4514
73
- openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_versions_v1_workflows_workflow_id_versions_get.py,sha256=jBJJwJQfKBBYTX1FhSe7qWFxK0ZvYD_QKcrxTgo361U,5857
74
- openapi_client/cyberdesk_cloud_client/api/workflows/list_workflows_v1_workflows_get.py,sha256=xM1Ex78PdeJK2IrQ10ghKqk93FwNGOnVOPt666hUhwE,5626
75
- openapi_client/cyberdesk_cloud_client/api/workflows/update_workflow_v1_workflows_workflow_id_patch.py,sha256=G6l9aClbapqjCmDsjK01447iqRKhRFp9CnJDLHV8OBc,5705
76
- openapi_client/cyberdesk_cloud_client/models/__init__.py,sha256=SRvxZix5iwyWa-eVhB0FcjhWgkRexP_YMP1KGH2vQDc,8104
71
+ openapi_client/cyberdesk_cloud_client/api/workflows/create_workflow_v1_workflows_post.py,sha256=b_N1b5ujzuKuhgnlqRQdU4LB_aBSBcR0kl06ZZOJaJc,4836
72
+ openapi_client/cyberdesk_cloud_client/api/workflows/delete_workflow_v1_workflows_workflow_id_delete.py,sha256=-bCfjktthEwKL73PpLWb8qVjFPpBcqhjOcVii3wULGs,4559
73
+ openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_v1_workflows_workflow_id_get.py,sha256=a2avmbv5jnLkN98aPymmnUSBWk5ub-e-7Zq0BJkgqnQ,4546
74
+ openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_versions_v1_workflows_workflow_id_versions_get.py,sha256=ax_5V-lIClvOxr50eXSIAPbyhWP-cS4a4DXzwdxkVYs,5889
75
+ openapi_client/cyberdesk_cloud_client/api/workflows/list_workflows_v1_workflows_get.py,sha256=uubsZpnk8T9NGpx0IFmSkPOpIg3ozBCeZ_ms2D1yZ2c,5658
76
+ openapi_client/cyberdesk_cloud_client/api/workflows/update_workflow_v1_workflows_workflow_id_patch.py,sha256=K_tuO6s_FyM8MUOck5AuX_RNIeYqCQcfYx1aDg9xwhE,5737
77
+ openapi_client/cyberdesk_cloud_client/models/__init__.py,sha256=U7j2ivyaahQBknJMcN6FCPn0ppqnA69qtm98imKxtgk,8373
77
78
  openapi_client/cyberdesk_cloud_client/models/attachment_type.py,sha256=zqPOsSd2AmxGNqb5HQ6ZYBAYL8k-0UbWHhfAJYNHoro,161
78
79
  openapi_client/cyberdesk_cloud_client/models/connection_create.py,sha256=gCI36DmjJDZxzGFPbykyYw9k4QEf_4dVNz9b-xZfLo4,3288
79
80
  openapi_client/cyberdesk_cloud_client/models/connection_response.py,sha256=aFxqJX75wSEw5dZ-kvh3Wgv_haJ6xYJ7o72vSAbEtHY,5247
@@ -92,7 +93,7 @@ openapi_client/cyberdesk_cloud_client/models/http_validation_error.py,sha256=OvQ
92
93
  openapi_client/cyberdesk_cloud_client/models/keyboard_key_request.py,sha256=iZ2uFo_pgZ59xX04hJZpl49dfVLqTchtAYVUWZX8MEM,1475
93
94
  openapi_client/cyberdesk_cloud_client/models/keyboard_type_request.py,sha256=Jgzt14kcl8kfdEJYI3BSnHgxVbFnUIUjBQDF1ly-vIY,1480
94
95
  openapi_client/cyberdesk_cloud_client/models/machine_create.py,sha256=WiSBX-7Sx73C0jVHc6dhl4E0pWQNE2RrJ9DZ3gljZQ4,4449
95
- openapi_client/cyberdesk_cloud_client/models/machine_response.py,sha256=-5NI7IN8W0cAWGqCZLpOVIzU6oKwMnPkiTsWg-vkHVc,5825
96
+ openapi_client/cyberdesk_cloud_client/models/machine_response.py,sha256=QjgDMLOKvXDTiV4w6bZ4-hW_2HW17-f2UZOSDeSm5uc,7427
96
97
  openapi_client/cyberdesk_cloud_client/models/machine_status.py,sha256=mqKyXgK1wcaA2fI6iTo_tS7AMeuVrRN4yE21d2Lsq1I,200
97
98
  openapi_client/cyberdesk_cloud_client/models/machine_update.py,sha256=906MebM_AUetLZtTyeoZ40TPMORx4yyZPHmJ_j_tg9A,6973
98
99
  openapi_client/cyberdesk_cloud_client/models/mouse_click_request.py,sha256=GSBn4fg2sNnL4KQQHKly2YIzyRqbfwVgrQXpaalOUxg,3423
@@ -110,15 +111,18 @@ openapi_client/cyberdesk_cloud_client/models/power_shell_session_request.py,sha2
110
111
  openapi_client/cyberdesk_cloud_client/models/powershell_exec_v1_computer_machine_id_shell_powershell_exec_post_response_powershell_exec_v1_computer_machine_id_shell_powershell_exec_post.py,sha256=N496N5sS2XP1dqAvoB3EplU3Dxwtf867Vr8hhh315V8,1813
111
112
  openapi_client/cyberdesk_cloud_client/models/powershell_session_v1_computer_machine_id_shell_powershell_session_post_response_powershell_session_v1_computer_machine_id_shell_powershell_session_post.py,sha256=pmt2dgp_0v1YoLJqDXTXdpJ29TBenyCC4C_xmUCFGgA,1873
112
113
  openapi_client/cyberdesk_cloud_client/models/request_log_create.py,sha256=6CNnBvl9oyGs0J0R994eFn-TIdl6ohsofvCc2SXVfWc,6072
113
- openapi_client/cyberdesk_cloud_client/models/request_log_response.py,sha256=mU3lUdbLRFg9XppHnO-GjKcvt4M_BCG5CynWwU7ivZE,7445
114
+ openapi_client/cyberdesk_cloud_client/models/request_log_response.py,sha256=ar41BvME8lsQOaDCz7KfPSSohj5_r8MYiMzdiIbRTMw,8239
114
115
  openapi_client/cyberdesk_cloud_client/models/request_log_update.py,sha256=VcXBNffDOoEYYBjwvdkuSWPz04BW3c8YTcqzlZRb0ns,5677
115
116
  openapi_client/cyberdesk_cloud_client/models/run_attachment_create.py,sha256=w58KmB9lLnE2N2EQJz_DP1PQj5OEL__t9ufdQFryp0A,4965
116
117
  openapi_client/cyberdesk_cloud_client/models/run_attachment_download_url_response.py,sha256=CUeh3Zas29uwfpH5oMbQ_hhkpsZ_RH7ZA_RyfRsf8mY,1864
117
- openapi_client/cyberdesk_cloud_client/models/run_attachment_response.py,sha256=LZEFltiyC_bBVNlz3LM1H5MXFoBkVzk-CzNuvlTumJ4,5769
118
+ openapi_client/cyberdesk_cloud_client/models/run_attachment_response.py,sha256=_K4POw4eH_5wYbu8lqH1sHc3oMXFBDPtcqWfkBx3z68,7371
118
119
  openapi_client/cyberdesk_cloud_client/models/run_attachment_update.py,sha256=rGXcB21waSTXG0-mt0XhNcwoJI1PhBpBDUkLfp8mM-0,2573
120
+ openapi_client/cyberdesk_cloud_client/models/run_bulk_create.py,sha256=Mlz19LHQTwutkX1rddfSMCgQOZV1mc6SE4kDQyKplao,6350
121
+ openapi_client/cyberdesk_cloud_client/models/run_bulk_create_input_values_type_0.py,sha256=JxGOOYKueFx5NtvnXgf9z_sXbMByQrsjjQ3AmU8qG30,1305
122
+ openapi_client/cyberdesk_cloud_client/models/run_bulk_create_response.py,sha256=N9sMykvm6pC2fMMH_XVQI8wVc6-53qAHMb_qbNBo9-c,2886
119
123
  openapi_client/cyberdesk_cloud_client/models/run_create.py,sha256=hUMuozdNHMQwndTl-mCfQ8hGwPeJ_EkPeZEmAUQWMHc,6083
120
124
  openapi_client/cyberdesk_cloud_client/models/run_create_input_values_type_0.py,sha256=APV4O0GduU3fhHoJHMMOBk-h92Hf21c1ZU-pIsJoZpg,1282
121
- openapi_client/cyberdesk_cloud_client/models/run_response.py,sha256=zZUNgMVc8-Lmm_X3t_XzWdY1x_B7f3JixPWebfwl_40,10689
125
+ openapi_client/cyberdesk_cloud_client/models/run_response.py,sha256=Pv7OQgJbxPbBpI0B-Scmx4zdmjW6q36Q7QeWoDqVomw,12324
122
126
  openapi_client/cyberdesk_cloud_client/models/run_response_input_values_type_0.py,sha256=NpMqT3qaMrLGA7mHBjvtS1fnMGc5zxwWLoFWunjjupA,1292
123
127
  openapi_client/cyberdesk_cloud_client/models/run_response_output_data_type_0.py,sha256=rO4YJAa26G_83CFtBTQ_ZKCURAxNS7PcvdKbfuvDcrA,1287
124
128
  openapi_client/cyberdesk_cloud_client/models/run_response_run_message_history_type_0_item.py,sha256=3x1N3yi3kyc1que3bizmHEuGBn5s7pEirEg4TgBV9FU,1348
@@ -131,7 +135,7 @@ openapi_client/cyberdesk_cloud_client/models/trajectory_create.py,sha256=vd9Y1v4
131
135
  openapi_client/cyberdesk_cloud_client/models/trajectory_create_dimensions.py,sha256=PRX7oM8sseKD0nhJsQ8SYP4aOzjkMtfcza7_jWFVl9Y,1324
132
136
  openapi_client/cyberdesk_cloud_client/models/trajectory_create_original_input_values_type_0.py,sha256=Rz80esN5_oDA-dXeZ9WFhe6POtNJXWvZjoOqw1KUVJM,1360
133
137
  openapi_client/cyberdesk_cloud_client/models/trajectory_create_trajectory_data_item.py,sha256=_8TzdjPWMx4YzsSTCiA_45R2TrNjWhu3nlknQ8KCy_U,1324
134
- openapi_client/cyberdesk_cloud_client/models/trajectory_response.py,sha256=Hc1aWkQKOfnQoLIaNZr6lUaxdkayKE9w0D2auNQC_Ho,6070
138
+ openapi_client/cyberdesk_cloud_client/models/trajectory_response.py,sha256=HC7zPIdsPma6ccM07CfA5VTdDjHlcX7whj1K3Y1IGZg,7672
135
139
  openapi_client/cyberdesk_cloud_client/models/trajectory_response_dimensions.py,sha256=MG0Le6-JKmCF9oIymTWw1BSNYuk61CX8-EJCWhSRUjE,1334
136
140
  openapi_client/cyberdesk_cloud_client/models/trajectory_response_original_input_values_type_0.py,sha256=ZzFZTF9Z3U8WJWrH8J5yaUOd9QN0v_T8wW9LQgYoEC8,1370
137
141
  openapi_client/cyberdesk_cloud_client/models/trajectory_response_trajectory_data_item.py,sha256=h0JpPrd5qzo3ue4l9jBXk-R49ipVr75W_RsZw6e5cjk,1334
@@ -139,10 +143,10 @@ openapi_client/cyberdesk_cloud_client/models/trajectory_update.py,sha256=dzqD6zA
139
143
  openapi_client/cyberdesk_cloud_client/models/trajectory_update_trajectory_data_type_0_item.py,sha256=3Zt8-nV3ZHjXzL1y5xKQdrHb-7ILG4EjHvtA4xabde4,1355
140
144
  openapi_client/cyberdesk_cloud_client/models/validation_error.py,sha256=ZlK9hbhWr4zSC-dxZh9giERvMiYf9s2k8e1O9Rch_NI,2181
141
145
  openapi_client/cyberdesk_cloud_client/models/workflow_create.py,sha256=Z7XG8k1js_cXclCJKEBV_xk25mgr3BDuYgPLuQcXWEk,3490
142
- openapi_client/cyberdesk_cloud_client/models/workflow_response.py,sha256=kC_ZGUweaiogKqyRS1yjByHuYqZW0jzxuEyM9CIfFsc,6937
146
+ openapi_client/cyberdesk_cloud_client/models/workflow_response.py,sha256=Z4ABOHurTjNfQh1odBbEZ5YW3agm63QklKdE-gzu6dQ,8539
143
147
  openapi_client/cyberdesk_cloud_client/models/workflow_response_old_versions_type_0_item.py,sha256=W9AxxlBlN3rUwLDcoUx5H7MUiYA9UztfX9iEpNGlgAs,1340
144
148
  openapi_client/cyberdesk_cloud_client/models/workflow_update.py,sha256=_zMo2mJbYdKILygBXwebAD37SJJCUZOTkJkMOCzeNTA,4439
145
- cyberdesk-1.10.0.dist-info/METADATA,sha256=mcSaRs06cVkhE_-SVJ1kWkVfXWzog4r6eTkxKNxDgg4,6792
146
- cyberdesk-1.10.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
147
- cyberdesk-1.10.0.dist-info/top_level.txt,sha256=qTYHZHVHh3VClNPQsiFFA8p8tmJgFGhq9G1COd-pX_A,25
148
- cyberdesk-1.10.0.dist-info/RECORD,,
149
+ cyberdesk-2.0.0.dist-info/METADATA,sha256=6LdoM8WdJ4wa_ETzz8H9jvrzH2wtaosXO8-dSavptbQ,6791
150
+ cyberdesk-2.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
151
+ cyberdesk-2.0.0.dist-info/top_level.txt,sha256=qTYHZHVHh3VClNPQsiFFA8p8tmJgFGhq9G1COd-pX_A,25
152
+ cyberdesk-2.0.0.dist-info/RECORD,,
@@ -67,7 +67,7 @@ def sync_detailed(
67
67
 
68
68
  Create a new connection (typically done by the WebSocket handler).
69
69
 
70
- The machine must exist and belong to the authenticated user.
70
+ The machine must exist and belong to the authenticated organization.
71
71
 
72
72
  Args:
73
73
  body (ConnectionCreate): Schema for creating a connection
@@ -100,7 +100,7 @@ def sync(
100
100
 
101
101
  Create a new connection (typically done by the WebSocket handler).
102
102
 
103
- The machine must exist and belong to the authenticated user.
103
+ The machine must exist and belong to the authenticated organization.
104
104
 
105
105
  Args:
106
106
  body (ConnectionCreate): Schema for creating a connection
@@ -128,7 +128,7 @@ async def asyncio_detailed(
128
128
 
129
129
  Create a new connection (typically done by the WebSocket handler).
130
130
 
131
- The machine must exist and belong to the authenticated user.
131
+ The machine must exist and belong to the authenticated organization.
132
132
 
133
133
  Args:
134
134
  body (ConnectionCreate): Schema for creating a connection
@@ -159,7 +159,7 @@ async def asyncio(
159
159
 
160
160
  Create a new connection (typically done by the WebSocket handler).
161
161
 
162
- The machine must exist and belong to the authenticated user.
162
+ The machine must exist and belong to the authenticated organization.
163
163
 
164
164
  Args:
165
165
  body (ConnectionCreate): Schema for creating a connection
@@ -57,7 +57,7 @@ def sync_detailed(
57
57
 
58
58
  Delete a connection (not typically used - connections are managed automatically).
59
59
 
60
- The connection must belong to a machine owned by the authenticated user.
60
+ The connection must belong to a machine owned by the authenticated organization.
61
61
 
62
62
  Args:
63
63
  connection_id (UUID):
@@ -90,7 +90,7 @@ def sync(
90
90
 
91
91
  Delete a connection (not typically used - connections are managed automatically).
92
92
 
93
- The connection must belong to a machine owned by the authenticated user.
93
+ The connection must belong to a machine owned by the authenticated organization.
94
94
 
95
95
  Args:
96
96
  connection_id (UUID):
@@ -118,7 +118,7 @@ async def asyncio_detailed(
118
118
 
119
119
  Delete a connection (not typically used - connections are managed automatically).
120
120
 
121
- The connection must belong to a machine owned by the authenticated user.
121
+ The connection must belong to a machine owned by the authenticated organization.
122
122
 
123
123
  Args:
124
124
  connection_id (UUID):
@@ -149,7 +149,7 @@ async def asyncio(
149
149
 
150
150
  Delete a connection (not typically used - connections are managed automatically).
151
151
 
152
- The connection must belong to a machine owned by the authenticated user.
152
+ The connection must belong to a machine owned by the authenticated organization.
153
153
 
154
154
  Args:
155
155
  connection_id (UUID):
@@ -59,7 +59,7 @@ def sync_detailed(
59
59
 
60
60
  Get a specific connection by ID.
61
61
 
62
- The connection must belong to a machine owned by the authenticated user.
62
+ The connection must belong to a machine owned by the authenticated organization.
63
63
 
64
64
  Args:
65
65
  connection_id (UUID):
@@ -92,7 +92,7 @@ def sync(
92
92
 
93
93
  Get a specific connection by ID.
94
94
 
95
- The connection must belong to a machine owned by the authenticated user.
95
+ The connection must belong to a machine owned by the authenticated organization.
96
96
 
97
97
  Args:
98
98
  connection_id (UUID):
@@ -120,7 +120,7 @@ async def asyncio_detailed(
120
120
 
121
121
  Get a specific connection by ID.
122
122
 
123
- The connection must belong to a machine owned by the authenticated user.
123
+ The connection must belong to a machine owned by the authenticated organization.
124
124
 
125
125
  Args:
126
126
  connection_id (UUID):
@@ -151,7 +151,7 @@ async def asyncio(
151
151
 
152
152
  Get a specific connection by ID.
153
153
 
154
- The connection must belong to a machine owned by the authenticated user.
154
+ The connection must belong to a machine owned by the authenticated organization.
155
155
 
156
156
  Args:
157
157
  connection_id (UUID):
@@ -92,7 +92,7 @@ def sync_detailed(
92
92
  ) -> Response[Union[HTTPValidationError, PaginatedResponseConnectionResponse]]:
93
93
  """List Connections
94
94
 
95
- List all connections for the authenticated user's machines.
95
+ List all connections for the authenticated organization's machines.
96
96
 
97
97
  Supports pagination and filtering by machine and status.
98
98
  Returns connections with their associated machine data.
@@ -135,7 +135,7 @@ def sync(
135
135
  ) -> Optional[Union[HTTPValidationError, PaginatedResponseConnectionResponse]]:
136
136
  """List Connections
137
137
 
138
- List all connections for the authenticated user's machines.
138
+ List all connections for the authenticated organization's machines.
139
139
 
140
140
  Supports pagination and filtering by machine and status.
141
141
  Returns connections with their associated machine data.
@@ -173,7 +173,7 @@ async def asyncio_detailed(
173
173
  ) -> Response[Union[HTTPValidationError, PaginatedResponseConnectionResponse]]:
174
174
  """List Connections
175
175
 
176
- List all connections for the authenticated user's machines.
176
+ List all connections for the authenticated organization's machines.
177
177
 
178
178
  Supports pagination and filtering by machine and status.
179
179
  Returns connections with their associated machine data.
@@ -214,7 +214,7 @@ async def asyncio(
214
214
  ) -> Optional[Union[HTTPValidationError, PaginatedResponseConnectionResponse]]:
215
215
  """List Connections
216
216
 
217
- List all connections for the authenticated user's machines.
217
+ List all connections for the authenticated organization's machines.
218
218
 
219
219
  Supports pagination and filtering by machine and status.
220
220
  Returns connections with their associated machine data.
@@ -71,7 +71,7 @@ def sync_detailed(
71
71
  Update a connection's status or timestamps.
72
72
 
73
73
  Only the fields provided in the request body will be updated.
74
- The connection must belong to a machine owned by the authenticated user.
74
+ The connection must belong to a machine owned by the authenticated organization.
75
75
 
76
76
  Args:
77
77
  connection_id (UUID):
@@ -108,7 +108,7 @@ def sync(
108
108
  Update a connection's status or timestamps.
109
109
 
110
110
  Only the fields provided in the request body will be updated.
111
- The connection must belong to a machine owned by the authenticated user.
111
+ The connection must belong to a machine owned by the authenticated organization.
112
112
 
113
113
  Args:
114
114
  connection_id (UUID):
@@ -140,7 +140,7 @@ async def asyncio_detailed(
140
140
  Update a connection's status or timestamps.
141
141
 
142
142
  Only the fields provided in the request body will be updated.
143
- The connection must belong to a machine owned by the authenticated user.
143
+ The connection must belong to a machine owned by the authenticated organization.
144
144
 
145
145
  Args:
146
146
  connection_id (UUID):
@@ -175,7 +175,7 @@ async def asyncio(
175
175
  Update a connection's status or timestamps.
176
176
 
177
177
  Only the fields provided in the request body will be updated.
178
- The connection must belong to a machine owned by the authenticated user.
178
+ The connection must belong to a machine owned by the authenticated organization.
179
179
 
180
180
  Args:
181
181
  connection_id (UUID):
@@ -67,7 +67,7 @@ def sync_detailed(
67
67
 
68
68
  Create a new machine.
69
69
 
70
- The machine will be associated with the authenticated user.
70
+ The machine will be associated with the authenticated organization.
71
71
 
72
72
  Args:
73
73
  body (MachineCreate): Schema for creating a machine
@@ -100,7 +100,7 @@ def sync(
100
100
 
101
101
  Create a new machine.
102
102
 
103
- The machine will be associated with the authenticated user.
103
+ The machine will be associated with the authenticated organization.
104
104
 
105
105
  Args:
106
106
  body (MachineCreate): Schema for creating a machine
@@ -128,7 +128,7 @@ async def asyncio_detailed(
128
128
 
129
129
  Create a new machine.
130
130
 
131
- The machine will be associated with the authenticated user.
131
+ The machine will be associated with the authenticated organization.
132
132
 
133
133
  Args:
134
134
  body (MachineCreate): Schema for creating a machine
@@ -159,7 +159,7 @@ async def asyncio(
159
159
 
160
160
  Create a new machine.
161
161
 
162
- The machine will be associated with the authenticated user.
162
+ The machine will be associated with the authenticated organization.
163
163
 
164
164
  Args:
165
165
  body (MachineCreate): Schema for creating a machine
@@ -58,7 +58,7 @@ def sync_detailed(
58
58
  Delete a machine.
59
59
 
60
60
  This will also delete all associated connections, request logs, and runs.
61
- The machine must belong to the authenticated user.
61
+ The machine must belong to the authenticated organization.
62
62
 
63
63
  Args:
64
64
  machine_id (UUID):
@@ -92,7 +92,7 @@ def sync(
92
92
  Delete a machine.
93
93
 
94
94
  This will also delete all associated connections, request logs, and runs.
95
- The machine must belong to the authenticated user.
95
+ The machine must belong to the authenticated organization.
96
96
 
97
97
  Args:
98
98
  machine_id (UUID):
@@ -121,7 +121,7 @@ async def asyncio_detailed(
121
121
  Delete a machine.
122
122
 
123
123
  This will also delete all associated connections, request logs, and runs.
124
- The machine must belong to the authenticated user.
124
+ The machine must belong to the authenticated organization.
125
125
 
126
126
  Args:
127
127
  machine_id (UUID):
@@ -153,7 +153,7 @@ async def asyncio(
153
153
  Delete a machine.
154
154
 
155
155
  This will also delete all associated connections, request logs, and runs.
156
- The machine must belong to the authenticated user.
156
+ The machine must belong to the authenticated organization.
157
157
 
158
158
  Args:
159
159
  machine_id (UUID):
@@ -59,7 +59,7 @@ def sync_detailed(
59
59
 
60
60
  Get a specific machine by ID.
61
61
 
62
- The machine must belong to the authenticated user.
62
+ The machine must belong to the authenticated organization.
63
63
 
64
64
  Args:
65
65
  machine_id (UUID):
@@ -92,7 +92,7 @@ def sync(
92
92
 
93
93
  Get a specific machine by ID.
94
94
 
95
- The machine must belong to the authenticated user.
95
+ The machine must belong to the authenticated organization.
96
96
 
97
97
  Args:
98
98
  machine_id (UUID):
@@ -120,7 +120,7 @@ async def asyncio_detailed(
120
120
 
121
121
  Get a specific machine by ID.
122
122
 
123
- The machine must belong to the authenticated user.
123
+ The machine must belong to the authenticated organization.
124
124
 
125
125
  Args:
126
126
  machine_id (UUID):
@@ -151,7 +151,7 @@ async def asyncio(
151
151
 
152
152
  Get a specific machine by ID.
153
153
 
154
- The machine must belong to the authenticated user.
154
+ The machine must belong to the authenticated organization.
155
155
 
156
156
  Args:
157
157
  machine_id (UUID):
@@ -80,7 +80,7 @@ def sync_detailed(
80
80
  ) -> Response[Union[HTTPValidationError, PaginatedResponseMachineResponse]]:
81
81
  """List Machines
82
82
 
83
- List all machines for the authenticated user.
83
+ List all machines for the authenticated organization.
84
84
 
85
85
  Supports pagination and filtering by status.
86
86
 
@@ -119,7 +119,7 @@ def sync(
119
119
  ) -> Optional[Union[HTTPValidationError, PaginatedResponseMachineResponse]]:
120
120
  """List Machines
121
121
 
122
- List all machines for the authenticated user.
122
+ List all machines for the authenticated organization.
123
123
 
124
124
  Supports pagination and filtering by status.
125
125
 
@@ -153,7 +153,7 @@ async def asyncio_detailed(
153
153
  ) -> Response[Union[HTTPValidationError, PaginatedResponseMachineResponse]]:
154
154
  """List Machines
155
155
 
156
- List all machines for the authenticated user.
156
+ List all machines for the authenticated organization.
157
157
 
158
158
  Supports pagination and filtering by status.
159
159
 
@@ -190,7 +190,7 @@ async def asyncio(
190
190
  ) -> Optional[Union[HTTPValidationError, PaginatedResponseMachineResponse]]:
191
191
  """List Machines
192
192
 
193
- List all machines for the authenticated user.
193
+ List all machines for the authenticated organization.
194
194
 
195
195
  Supports pagination and filtering by status.
196
196
 
@@ -71,7 +71,7 @@ def sync_detailed(
71
71
  Update a machine's information.
72
72
 
73
73
  Only the fields provided in the request body will be updated.
74
- The machine must belong to the authenticated user.
74
+ The machine must belong to the authenticated organization.
75
75
 
76
76
  Args:
77
77
  machine_id (UUID):
@@ -108,7 +108,7 @@ def sync(
108
108
  Update a machine's information.
109
109
 
110
110
  Only the fields provided in the request body will be updated.
111
- The machine must belong to the authenticated user.
111
+ The machine must belong to the authenticated organization.
112
112
 
113
113
  Args:
114
114
  machine_id (UUID):
@@ -140,7 +140,7 @@ async def asyncio_detailed(
140
140
  Update a machine's information.
141
141
 
142
142
  Only the fields provided in the request body will be updated.
143
- The machine must belong to the authenticated user.
143
+ The machine must belong to the authenticated organization.
144
144
 
145
145
  Args:
146
146
  machine_id (UUID):
@@ -175,7 +175,7 @@ async def asyncio(
175
175
  Update a machine's information.
176
176
 
177
177
  Only the fields provided in the request body will be updated.
178
- The machine must belong to the authenticated user.
178
+ The machine must belong to the authenticated organization.
179
179
 
180
180
  Args:
181
181
  machine_id (UUID):