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.
- cyberdesk/__init__.py +1 -1
- cyberdesk/client.py +59 -0
- {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/METADATA +1 -1
- {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/RECORD +51 -47
- openapi_client/cyberdesk_cloud_client/api/connections/create_connection_v1_connections_post.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/connections/delete_connection_v1_connections_connection_id_delete.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/connections/get_connection_v1_connections_connection_id_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/connections/list_connections_v1_connections_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/connections/update_connection_v1_connections_connection_id_patch.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/machines/create_machine_v1_machines_post.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/machines/delete_machine_v1_machines_machine_id_delete.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/machines/get_machine_v1_machines_machine_id_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/machines/list_machines_v1_machines_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/machines/update_machine_v1_machines_machine_id_patch.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/request_logs/create_request_log_v1_request_logs_post.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/request_logs/delete_request_log_v1_request_logs_log_id_delete.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/request_logs/get_request_log_v1_request_logs_log_id_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/request_logs/list_request_logs_v1_request_logs_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/request_logs/update_request_log_v1_request_logs_log_id_patch.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/run_attachments/list_run_attachments_v1_run_attachments_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/runs/bulk_create_runs_v1_runs_bulk_post.py +200 -0
- openapi_client/cyberdesk_cloud_client/api/runs/create_run_v1_runs_post.py +12 -8
- openapi_client/cyberdesk_cloud_client/api/runs/delete_run_v1_runs_run_id_delete.py +8 -4
- openapi_client/cyberdesk_cloud_client/api/runs/get_run_v1_runs_run_id_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/runs/list_runs_v1_runs_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/runs/update_run_v1_runs_run_id_patch.py +8 -12
- openapi_client/cyberdesk_cloud_client/api/trajectories/create_trajectory_v1_trajectories_post.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/trajectories/delete_trajectory_v1_trajectories_trajectory_id_delete.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/trajectories/get_latest_trajectory_for_workflow_v1_workflows_workflow_id_latest_trajectory_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/trajectories/get_trajectory_v1_trajectories_trajectory_id_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/trajectories/list_trajectories_v1_trajectories_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/trajectories/update_trajectory_v1_trajectories_trajectory_id_patch.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/workflows/create_workflow_v1_workflows_post.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/workflows/delete_workflow_v1_workflows_workflow_id_delete.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_v1_workflows_workflow_id_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_versions_v1_workflows_workflow_id_versions_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/workflows/list_workflows_v1_workflows_get.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/workflows/update_workflow_v1_workflows_workflow_id_patch.py +4 -4
- openapi_client/cyberdesk_cloud_client/models/__init__.py +6 -0
- openapi_client/cyberdesk_cloud_client/models/machine_response.py +50 -8
- openapi_client/cyberdesk_cloud_client/models/request_log_response.py +20 -0
- openapi_client/cyberdesk_cloud_client/models/run_attachment_response.py +50 -8
- openapi_client/cyberdesk_cloud_client/models/run_bulk_create.py +181 -0
- openapi_client/cyberdesk_cloud_client/models/run_bulk_create_input_values_type_0.py +44 -0
- openapi_client/cyberdesk_cloud_client/models/run_bulk_create_response.py +96 -0
- openapi_client/cyberdesk_cloud_client/models/run_response.py +51 -8
- openapi_client/cyberdesk_cloud_client/models/trajectory_response.py +50 -8
- openapi_client/cyberdesk_cloud_client/models/workflow_response.py +50 -8
- {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/WHEEL +0 -0
- {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/licenses/LICENSE +0 -0
- {cyberdesk-1.10.0.dist-info → cyberdesk-2.0.0.dist-info}/top_level.txt +0 -0
cyberdesk/__init__.py
CHANGED
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
|
-
cyberdesk/__init__.py,sha256=
|
|
2
|
-
cyberdesk/client.py,sha256=
|
|
3
|
-
cyberdesk-
|
|
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=
|
|
25
|
-
openapi_client/cyberdesk_cloud_client/api/connections/delete_connection_v1_connections_connection_id_delete.py,sha256
|
|
26
|
-
openapi_client/cyberdesk_cloud_client/api/connections/get_connection_v1_connections_connection_id_get.py,sha256=
|
|
27
|
-
openapi_client/cyberdesk_cloud_client/api/connections/list_connections_v1_connections_get.py,sha256=
|
|
28
|
-
openapi_client/cyberdesk_cloud_client/api/connections/update_connection_v1_connections_connection_id_patch.py,sha256=
|
|
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=
|
|
36
|
-
openapi_client/cyberdesk_cloud_client/api/machines/delete_machine_v1_machines_machine_id_delete.py,sha256
|
|
37
|
-
openapi_client/cyberdesk_cloud_client/api/machines/get_machine_v1_machines_machine_id_get.py,sha256=
|
|
38
|
-
openapi_client/cyberdesk_cloud_client/api/machines/list_machines_v1_machines_get.py,sha256=
|
|
39
|
-
openapi_client/cyberdesk_cloud_client/api/machines/update_machine_v1_machines_machine_id_patch.py,sha256=
|
|
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=
|
|
42
|
-
openapi_client/cyberdesk_cloud_client/api/request_logs/delete_request_log_v1_request_logs_log_id_delete.py,sha256=
|
|
43
|
-
openapi_client/cyberdesk_cloud_client/api/request_logs/get_request_log_v1_request_logs_log_id_get.py,sha256=
|
|
44
|
-
openapi_client/cyberdesk_cloud_client/api/request_logs/list_request_logs_v1_request_logs_get.py,sha256=
|
|
45
|
-
openapi_client/cyberdesk_cloud_client/api/request_logs/update_request_log_v1_request_logs_log_id_patch.py,sha256=
|
|
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=
|
|
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/
|
|
56
|
-
openapi_client/cyberdesk_cloud_client/api/runs/
|
|
57
|
-
openapi_client/cyberdesk_cloud_client/api/runs/
|
|
58
|
-
openapi_client/cyberdesk_cloud_client/api/runs/
|
|
59
|
-
openapi_client/cyberdesk_cloud_client/api/runs/
|
|
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=
|
|
64
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/delete_trajectory_v1_trajectories_trajectory_id_delete.py,sha256=
|
|
65
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/get_latest_trajectory_for_workflow_v1_workflows_workflow_id_latest_trajectory_get.py,sha256=
|
|
66
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/get_trajectory_v1_trajectories_trajectory_id_get.py,sha256=
|
|
67
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/list_trajectories_v1_trajectories_get.py,sha256=
|
|
68
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/update_trajectory_v1_trajectories_trajectory_id_patch.py,sha256=
|
|
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=
|
|
71
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/delete_workflow_v1_workflows_workflow_id_delete.py,sha256
|
|
72
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_v1_workflows_workflow_id_get.py,sha256=
|
|
73
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_versions_v1_workflows_workflow_id_versions_get.py,sha256=
|
|
74
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/list_workflows_v1_workflows_get.py,sha256=
|
|
75
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/update_workflow_v1_workflows_workflow_id_patch.py,sha256=
|
|
76
|
-
openapi_client/cyberdesk_cloud_client/models/__init__.py,sha256=
|
|
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
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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-
|
|
146
|
-
cyberdesk-
|
|
147
|
-
cyberdesk-
|
|
148
|
-
cyberdesk-
|
|
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,,
|
openapi_client/cyberdesk_cloud_client/api/connections/create_connection_v1_connections_post.py
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
154
|
+
The connection must belong to a machine owned by the authenticated organization.
|
|
155
155
|
|
|
156
156
|
Args:
|
|
157
157
|
connection_id (UUID):
|
openapi_client/cyberdesk_cloud_client/api/connections/list_connections_v1_connections_get.py
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
162
|
+
The machine will be associated with the authenticated organization.
|
|
163
163
|
|
|
164
164
|
Args:
|
|
165
165
|
body (MachineCreate): Schema for creating a machine
|
openapi_client/cyberdesk_cloud_client/api/machines/delete_machine_v1_machines_machine_id_delete.py
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
156
|
+
The machine must belong to the authenticated organization.
|
|
157
157
|
|
|
158
158
|
Args:
|
|
159
159
|
machine_id (UUID):
|
openapi_client/cyberdesk_cloud_client/api/machines/get_machine_v1_machines_machine_id_get.py
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
193
|
+
List all machines for the authenticated organization.
|
|
194
194
|
|
|
195
195
|
Supports pagination and filtering by status.
|
|
196
196
|
|
openapi_client/cyberdesk_cloud_client/api/machines/update_machine_v1_machines_machine_id_patch.py
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
178
|
+
The machine must belong to the authenticated organization.
|
|
179
179
|
|
|
180
180
|
Args:
|
|
181
181
|
machine_id (UUID):
|