cyberdesk 1.11.0__py3-none-any.whl → 2.1.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 +358 -6
- {cyberdesk-1.11.0.dist-info → cyberdesk-2.1.0.dist-info}/METADATA +1 -1
- {cyberdesk-1.11.0.dist-info → cyberdesk-2.1.0.dist-info}/RECORD +66 -49
- 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_pools_v1_machines_machine_id_pools_get.py +169 -0
- 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_pools_v1_machines_machine_id_pools_put.py +190 -0
- openapi_client/cyberdesk_cloud_client/api/machines/update_machine_v1_machines_machine_id_patch.py +4 -4
- openapi_client/cyberdesk_cloud_client/api/pools/__init__.py +1 -0
- openapi_client/cyberdesk_cloud_client/api/pools/add_machines_to_pool_v1_pools_pool_id_machines_post.py +186 -0
- openapi_client/cyberdesk_cloud_client/api/pools/create_pool_v1_pools_post.py +172 -0
- openapi_client/cyberdesk_cloud_client/api/pools/delete_pool_v1_pools_pool_id_delete.py +162 -0
- openapi_client/cyberdesk_cloud_client/api/pools/get_pool_v1_pools_pool_id_get.py +185 -0
- openapi_client/cyberdesk_cloud_client/api/pools/list_pools_v1_pools_get.py +186 -0
- openapi_client/cyberdesk_cloud_client/api/pools/remove_machines_from_pool_v1_pools_pool_id_machines_delete.py +184 -0
- openapi_client/cyberdesk_cloud_client/api/pools/update_pool_v1_pools_pool_id_patch.py +186 -0
- 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/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 +14 -0
- openapi_client/cyberdesk_cloud_client/models/machine_pool_assignment.py +69 -0
- openapi_client/cyberdesk_cloud_client/models/machine_pool_update.py +69 -0
- openapi_client/cyberdesk_cloud_client/models/machine_response.py +96 -9
- openapi_client/cyberdesk_cloud_client/models/paginated_response_pool_response.py +97 -0
- openapi_client/cyberdesk_cloud_client/models/pool_create.py +82 -0
- openapi_client/cyberdesk_cloud_client/models/pool_response.py +137 -0
- openapi_client/cyberdesk_cloud_client/models/pool_update.py +92 -0
- openapi_client/cyberdesk_cloud_client/models/pool_with_machines.py +162 -0
- 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 +40 -0
- openapi_client/cyberdesk_cloud_client/models/run_create.py +40 -0
- openapi_client/cyberdesk_cloud_client/models/run_response.py +90 -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.11.0.dist-info → cyberdesk-2.1.0.dist-info}/WHEEL +0 -0
- {cyberdesk-1.11.0.dist-info → cyberdesk-2.1.0.dist-info}/licenses/LICENSE +0 -0
- {cyberdesk-1.11.0.dist-info → cyberdesk-2.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
cyberdesk/__init__.py,sha256=
|
|
2
|
-
cyberdesk/client.py,sha256=
|
|
3
|
-
cyberdesk-1.
|
|
1
|
+
cyberdesk/__init__.py,sha256=LDnOjNlOAyCgJyfbi3tJb33gX4LZd6fWsl4u1Lbi9Uk,1157
|
|
2
|
+
cyberdesk/client.py,sha256=GJdoZ8XS2xaQt6zMJY0JlYVpk_CDhmPRusFBvGuE0uk,56793
|
|
3
|
+
cyberdesk-2.1.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,60 +21,70 @@ 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/
|
|
38
|
-
openapi_client/cyberdesk_cloud_client/api/machines/
|
|
39
|
-
openapi_client/cyberdesk_cloud_client/api/machines/
|
|
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_pools_v1_machines_machine_id_pools_get.py,sha256=oqAf2YGONto0zV9pB3fnBX3B9S6fSKGmO5Y7V0nI6jY,4548
|
|
38
|
+
openapi_client/cyberdesk_cloud_client/api/machines/get_machine_v1_machines_machine_id_get.py,sha256=ygavJyYWH59YYO9nwjWItmjYxNf3-jer138RUqscFpM,4502
|
|
39
|
+
openapi_client/cyberdesk_cloud_client/api/machines/list_machines_v1_machines_get.py,sha256=fD9qvJ4MwjrZPqCDRwLO0dy7emSNSczXTSrplx_TjWE,6499
|
|
40
|
+
openapi_client/cyberdesk_cloud_client/api/machines/update_machine_pools_v1_machines_machine_id_pools_put.py,sha256=L7EUPJh-f3fLlIp7j7D6TDriKG2SzjlT7XCkhx3HkrU,5363
|
|
41
|
+
openapi_client/cyberdesk_cloud_client/api/machines/update_machine_v1_machines_machine_id_patch.py,sha256=8dqEUZaTMLAIbDSrZ7lzAHsU_CecWkzpoSwVoZ5aTMk,5446
|
|
42
|
+
openapi_client/cyberdesk_cloud_client/api/pools/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
43
|
+
openapi_client/cyberdesk_cloud_client/api/pools/add_machines_to_pool_v1_pools_pool_id_machines_post.py,sha256=obWOLy7jQbLwBJbX-OJ6U_ZhXgr24bXmZRqJzIJTKas,5008
|
|
44
|
+
openapi_client/cyberdesk_cloud_client/api/pools/create_pool_v1_pools_post.py,sha256=7dacQgMIDSE1OBFcUwNr1hzFRQUoVZDRzf6tIRdEnDQ,4488
|
|
45
|
+
openapi_client/cyberdesk_cloud_client/api/pools/delete_pool_v1_pools_pool_id_delete.py,sha256=GrDOSy5HGqxVoL2qqoSXoWZMMU4Uf4ZEZbDBLjbcSwQ,4123
|
|
46
|
+
openapi_client/cyberdesk_cloud_client/api/pools/get_pool_v1_pools_pool_id_get.py,sha256=JQkIa23YTrmhUQRtEueEjbQbzN5w8yhXHOjhIuVyq40,5188
|
|
47
|
+
openapi_client/cyberdesk_cloud_client/api/pools/list_pools_v1_pools_get.py,sha256=55jaNqNdq2rCgXOgW8DWYlFY2BR5yPSdIlXdZvC8A0I,5190
|
|
48
|
+
openapi_client/cyberdesk_cloud_client/api/pools/remove_machines_from_pool_v1_pools_pool_id_machines_delete.py,sha256=n001tZg1wVFKQIzqWicFsQ-lP5G_H6mM7UooPDMMrlY,4839
|
|
49
|
+
openapi_client/cyberdesk_cloud_client/api/pools/update_pool_v1_pools_pool_id_patch.py,sha256=-_6txdkWzTQGHW3IkAB6TgyfqOYb599siPbyQhtGLgc,4745
|
|
40
50
|
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=
|
|
51
|
+
openapi_client/cyberdesk_cloud_client/api/request_logs/create_request_log_v1_request_logs_post.py,sha256=pYWsEho0fFAik-XtQmLXky1KAYMSvM-kozREYW3NYcc,5157
|
|
52
|
+
openapi_client/cyberdesk_cloud_client/api/request_logs/delete_request_log_v1_request_logs_log_id_delete.py,sha256=8HWp4-MCAG77-R0-i3Joi0unfCCLtasMjJUpf6KiFG0,4500
|
|
53
|
+
openapi_client/cyberdesk_cloud_client/api/request_logs/get_request_log_v1_request_logs_log_id_get.py,sha256=UHzHr035K7g7OgLdB4wd0qjt8wEcZAqAnFEVLmbmrfI,4566
|
|
54
|
+
openapi_client/cyberdesk_cloud_client/api/request_logs/list_request_logs_v1_request_logs_get.py,sha256=DR6WYLnufrNcBtCTmyVx0egitnWgZRyo2XaeS9BWC0g,8108
|
|
55
|
+
openapi_client/cyberdesk_cloud_client/api/request_logs/update_request_log_v1_request_logs_log_id_patch.py,sha256=t8Rec5lsy8pwF6oZzG2pQA7B0dXIEAIfeX6Gx5UGEr4,5912
|
|
46
56
|
openapi_client/cyberdesk_cloud_client/api/run_attachments/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
47
57
|
openapi_client/cyberdesk_cloud_client/api/run_attachments/create_run_attachment_v1_run_attachments_post.py,sha256=DTcoKhj8uflj1FUJAIKrVhbCXaQIjjWH3ZpijDJZdJI,5216
|
|
48
58
|
openapi_client/cyberdesk_cloud_client/api/run_attachments/delete_run_attachment_v1_run_attachments_attachment_id_delete.py,sha256=BUamhNNCzRL_irucvhvlOxkqnOxNv0wUUDUrHvmnDc0,4465
|
|
49
59
|
openapi_client/cyberdesk_cloud_client/api/run_attachments/download_run_attachment_v1_run_attachments_attachment_id_download_get.py,sha256=CGqC2lCQK1AbGCsIq2sA5PS8b1oA0VV5ysYvORuF8FY,4405
|
|
50
60
|
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
61
|
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=
|
|
62
|
+
openapi_client/cyberdesk_cloud_client/api/run_attachments/list_run_attachments_v1_run_attachments_get.py,sha256=ZcPnDPg7wu1Q9Wyj4tWej2GRj7_w_oOItv2vmUf71i8,7815
|
|
53
63
|
openapi_client/cyberdesk_cloud_client/api/run_attachments/update_run_attachment_v1_run_attachments_attachment_id_put.py,sha256=4jsIek-Z4U5hbKHRMBsnJr0DgfOoY5B2sC22d5Af-UU,5395
|
|
54
64
|
openapi_client/cyberdesk_cloud_client/api/runs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
55
65
|
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=
|
|
57
|
-
openapi_client/cyberdesk_cloud_client/api/runs/delete_run_v1_runs_run_id_delete.py,sha256=
|
|
58
|
-
openapi_client/cyberdesk_cloud_client/api/runs/get_run_v1_runs_run_id_get.py,sha256=
|
|
59
|
-
openapi_client/cyberdesk_cloud_client/api/runs/list_runs_v1_runs_get.py,sha256=
|
|
60
|
-
openapi_client/cyberdesk_cloud_client/api/runs/update_run_v1_runs_run_id_patch.py,sha256=
|
|
66
|
+
openapi_client/cyberdesk_cloud_client/api/runs/create_run_v1_runs_post.py,sha256=GhCe-A0JxVWvTgzA4AyKEJQOlem0uzttLmXBxRLlUys,5451
|
|
67
|
+
openapi_client/cyberdesk_cloud_client/api/runs/delete_run_v1_runs_run_id_delete.py,sha256=dOGd7lAPd9SBn9-13zhTx-wTtM6YQvT3WspjIQjOhHg,4428
|
|
68
|
+
openapi_client/cyberdesk_cloud_client/api/runs/get_run_v1_runs_run_id_get.py,sha256=4mPvnOtAICVqzyXbD5Gdtqq_f1ardg7WpseT8RI3mwQ,4594
|
|
69
|
+
openapi_client/cyberdesk_cloud_client/api/runs/list_runs_v1_runs_get.py,sha256=CXGk9-yOCaB1tlqa6VXhmi9IghXGi_MYTZJ5zzW6NdQ,8630
|
|
70
|
+
openapi_client/cyberdesk_cloud_client/api/runs/update_run_v1_runs_run_id_patch.py,sha256=8m2VaIjCilDkmkzgZ1D7JfNScDqgNRheaaUcuMqPibQ,5182
|
|
61
71
|
openapi_client/cyberdesk_cloud_client/api/test/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
62
72
|
openapi_client/cyberdesk_cloud_client/api/test/dummy_test_endpoint_v1_test_post.py,sha256=sxmvHugxdpK3jb8jmjUfo-pbzmmNU92C-Ze8quxSWC8,4642
|
|
63
73
|
openapi_client/cyberdesk_cloud_client/api/trajectories/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
64
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/create_trajectory_v1_trajectories_post.py,sha256=
|
|
65
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/delete_trajectory_v1_trajectories_trajectory_id_delete.py,sha256=
|
|
66
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/get_latest_trajectory_for_workflow_v1_workflows_workflow_id_latest_trajectory_get.py,sha256=
|
|
67
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/get_trajectory_v1_trajectories_trajectory_id_get.py,sha256=
|
|
68
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/list_trajectories_v1_trajectories_get.py,sha256=
|
|
69
|
-
openapi_client/cyberdesk_cloud_client/api/trajectories/update_trajectory_v1_trajectories_trajectory_id_patch.py,sha256=
|
|
74
|
+
openapi_client/cyberdesk_cloud_client/api/trajectories/create_trajectory_v1_trajectories_post.py,sha256=QN4uGKL30vh_tAOeySOy1c_c1NFQbbQXLfwQDBe1hBE,5199
|
|
75
|
+
openapi_client/cyberdesk_cloud_client/api/trajectories/delete_trajectory_v1_trajectories_trajectory_id_delete.py,sha256=uvWcVq-VsklflJd47OKsYszIXNFPu0YCAADo8NHmTR4,4366
|
|
76
|
+
openapi_client/cyberdesk_cloud_client/api/trajectories/get_latest_trajectory_for_workflow_v1_workflows_workflow_id_latest_trajectory_get.py,sha256=kFsYg3Jx13x56TrHCVuM7yzPBWKVBwZPklSxqELx1Fc,5026
|
|
77
|
+
openapi_client/cyberdesk_cloud_client/api/trajectories/get_trajectory_v1_trajectories_trajectory_id_get.py,sha256=d3cTp_hEThXejqxsdnRg1QhVoSMGMO1cLdeUG1vy7oo,4883
|
|
78
|
+
openapi_client/cyberdesk_cloud_client/api/trajectories/list_trajectories_v1_trajectories_get.py,sha256=1Px0RjH7Bjse4yXKjGJ04fa5RvFioy2XVyAvI5QBdFo,6833
|
|
79
|
+
openapi_client/cyberdesk_cloud_client/api/trajectories/update_trajectory_v1_trajectories_trajectory_id_patch.py,sha256=s3S6I24Tsf1nTByOf3bNw88WAfo6ogdo_PG7AjDbl-Q,5596
|
|
70
80
|
openapi_client/cyberdesk_cloud_client/api/workflows/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
71
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/create_workflow_v1_workflows_post.py,sha256=
|
|
72
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/delete_workflow_v1_workflows_workflow_id_delete.py,sha256
|
|
73
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_v1_workflows_workflow_id_get.py,sha256=
|
|
74
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_versions_v1_workflows_workflow_id_versions_get.py,sha256=
|
|
75
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/list_workflows_v1_workflows_get.py,sha256=
|
|
76
|
-
openapi_client/cyberdesk_cloud_client/api/workflows/update_workflow_v1_workflows_workflow_id_patch.py,sha256=
|
|
77
|
-
openapi_client/cyberdesk_cloud_client/models/__init__.py,sha256=
|
|
81
|
+
openapi_client/cyberdesk_cloud_client/api/workflows/create_workflow_v1_workflows_post.py,sha256=b_N1b5ujzuKuhgnlqRQdU4LB_aBSBcR0kl06ZZOJaJc,4836
|
|
82
|
+
openapi_client/cyberdesk_cloud_client/api/workflows/delete_workflow_v1_workflows_workflow_id_delete.py,sha256=-bCfjktthEwKL73PpLWb8qVjFPpBcqhjOcVii3wULGs,4559
|
|
83
|
+
openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_v1_workflows_workflow_id_get.py,sha256=a2avmbv5jnLkN98aPymmnUSBWk5ub-e-7Zq0BJkgqnQ,4546
|
|
84
|
+
openapi_client/cyberdesk_cloud_client/api/workflows/get_workflow_versions_v1_workflows_workflow_id_versions_get.py,sha256=ax_5V-lIClvOxr50eXSIAPbyhWP-cS4a4DXzwdxkVYs,5889
|
|
85
|
+
openapi_client/cyberdesk_cloud_client/api/workflows/list_workflows_v1_workflows_get.py,sha256=uubsZpnk8T9NGpx0IFmSkPOpIg3ozBCeZ_ms2D1yZ2c,5658
|
|
86
|
+
openapi_client/cyberdesk_cloud_client/api/workflows/update_workflow_v1_workflows_workflow_id_patch.py,sha256=K_tuO6s_FyM8MUOck5AuX_RNIeYqCQcfYx1aDg9xwhE,5737
|
|
87
|
+
openapi_client/cyberdesk_cloud_client/models/__init__.py,sha256=0ugs0zih1w9kwt_QLTVvvaEsPMioEojAgMJ0RfLKRS0,8891
|
|
78
88
|
openapi_client/cyberdesk_cloud_client/models/attachment_type.py,sha256=zqPOsSd2AmxGNqb5HQ6ZYBAYL8k-0UbWHhfAJYNHoro,161
|
|
79
89
|
openapi_client/cyberdesk_cloud_client/models/connection_create.py,sha256=gCI36DmjJDZxzGFPbykyYw9k4QEf_4dVNz9b-xZfLo4,3288
|
|
80
90
|
openapi_client/cyberdesk_cloud_client/models/connection_response.py,sha256=aFxqJX75wSEw5dZ-kvh3Wgv_haJ6xYJ7o72vSAbEtHY,5247
|
|
@@ -93,7 +103,9 @@ openapi_client/cyberdesk_cloud_client/models/http_validation_error.py,sha256=OvQ
|
|
|
93
103
|
openapi_client/cyberdesk_cloud_client/models/keyboard_key_request.py,sha256=iZ2uFo_pgZ59xX04hJZpl49dfVLqTchtAYVUWZX8MEM,1475
|
|
94
104
|
openapi_client/cyberdesk_cloud_client/models/keyboard_type_request.py,sha256=Jgzt14kcl8kfdEJYI3BSnHgxVbFnUIUjBQDF1ly-vIY,1480
|
|
95
105
|
openapi_client/cyberdesk_cloud_client/models/machine_create.py,sha256=WiSBX-7Sx73C0jVHc6dhl4E0pWQNE2RrJ9DZ3gljZQ4,4449
|
|
96
|
-
openapi_client/cyberdesk_cloud_client/models/
|
|
106
|
+
openapi_client/cyberdesk_cloud_client/models/machine_pool_assignment.py,sha256=oTctHGs4FQsdRvhc_evjC13vewhiQsaohsztMSWXJ9Q,2011
|
|
107
|
+
openapi_client/cyberdesk_cloud_client/models/machine_pool_update.py,sha256=K1ax3OmPZj2t-VlQ0CsRWYuTR667fBTXsT8hJkZXcWU,1935
|
|
108
|
+
openapi_client/cyberdesk_cloud_client/models/machine_response.py,sha256=jY8g10HTS1bjnMs1ptBC4X__kexnDSPCxNilGN0OAgk,9001
|
|
97
109
|
openapi_client/cyberdesk_cloud_client/models/machine_status.py,sha256=mqKyXgK1wcaA2fI6iTo_tS7AMeuVrRN4yE21d2Lsq1I,200
|
|
98
110
|
openapi_client/cyberdesk_cloud_client/models/machine_update.py,sha256=906MebM_AUetLZtTyeoZ40TPMORx4yyZPHmJ_j_tg9A,6973
|
|
99
111
|
openapi_client/cyberdesk_cloud_client/models/mouse_click_request.py,sha256=GSBn4fg2sNnL4KQQHKly2YIzyRqbfwVgrQXpaalOUxg,3423
|
|
@@ -102,27 +114,32 @@ openapi_client/cyberdesk_cloud_client/models/mouse_position.py,sha256=t8PW-7xKfy
|
|
|
102
114
|
openapi_client/cyberdesk_cloud_client/models/paginated_response.py,sha256=P9bt0Koea8rODsULodX8dDAwm-uP2KRE1mRi8AK-VBY,1988
|
|
103
115
|
openapi_client/cyberdesk_cloud_client/models/paginated_response_connection_response.py,sha256=2WxYXSS1RoBeh2ealxdQeEBSv0pBpllar1m98toeYHs,2527
|
|
104
116
|
openapi_client/cyberdesk_cloud_client/models/paginated_response_machine_response.py,sha256=m_bJGQwSQkqPeJwcQ2UnXglhdmPqsj_tjjx_3S-YZyE,2491
|
|
117
|
+
openapi_client/cyberdesk_cloud_client/models/paginated_response_pool_response.py,sha256=rJQGR-sZwtLBc0ewSao8jh3zSQ89woADJa63mXa61UI,2455
|
|
105
118
|
openapi_client/cyberdesk_cloud_client/models/paginated_response_run_attachment_response.py,sha256=OHsnkYeV1_35TYMrYRaG0XxdjaBXp5Qcq64hbHxzjV4,2568
|
|
106
119
|
openapi_client/cyberdesk_cloud_client/models/paginated_response_run_response.py,sha256=UFk93224AiT0TkMlxxy5UiTUP94JeCxy1EYx55wECWk,2443
|
|
107
120
|
openapi_client/cyberdesk_cloud_client/models/paginated_response_trajectory_response.py,sha256=gOdLxB8NSEualTnfJ8ww7M7evX8HpPlRgtUS8cgJHy8,2527
|
|
108
121
|
openapi_client/cyberdesk_cloud_client/models/paginated_response_workflow_response.py,sha256=vjx7RtvrVv9hiE1CPNMdReyc4kKbbTdSEMfU0Z-jhK0,2503
|
|
122
|
+
openapi_client/cyberdesk_cloud_client/models/pool_create.py,sha256=2--HYAKZ32HV8fFFMg-yMPX0TsXA-rp3hpA1bnU63q8,2236
|
|
123
|
+
openapi_client/cyberdesk_cloud_client/models/pool_response.py,sha256=quYX1HHAMOeb4P0djQt95kEfz5fTjOtj3kRcyMwtuc8,4012
|
|
124
|
+
openapi_client/cyberdesk_cloud_client/models/pool_update.py,sha256=4sMBukgmfF7MyPNiNqXR2BHqSXwzaRjbOFDW4sHlEJ4,2677
|
|
125
|
+
openapi_client/cyberdesk_cloud_client/models/pool_with_machines.py,sha256=_SlD1SBYlQZvUvYAZbF_EShWfiCbnKMt7j0dmxqRG1M,4971
|
|
109
126
|
openapi_client/cyberdesk_cloud_client/models/power_shell_exec_request.py,sha256=LoFKZ1fUeW3NM-fxrAMhbplyEDC_wOWpOjEb2vOQbuQ,3543
|
|
110
127
|
openapi_client/cyberdesk_cloud_client/models/power_shell_session_request.py,sha256=2Ix3dnjljWXO6KuOTPCykkYJim1at0_vAu1dh4Dahcw,2361
|
|
111
128
|
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
|
|
112
129
|
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
|
|
113
130
|
openapi_client/cyberdesk_cloud_client/models/request_log_create.py,sha256=6CNnBvl9oyGs0J0R994eFn-TIdl6ohsofvCc2SXVfWc,6072
|
|
114
|
-
openapi_client/cyberdesk_cloud_client/models/request_log_response.py,sha256=
|
|
131
|
+
openapi_client/cyberdesk_cloud_client/models/request_log_response.py,sha256=ar41BvME8lsQOaDCz7KfPSSohj5_r8MYiMzdiIbRTMw,8239
|
|
115
132
|
openapi_client/cyberdesk_cloud_client/models/request_log_update.py,sha256=VcXBNffDOoEYYBjwvdkuSWPz04BW3c8YTcqzlZRb0ns,5677
|
|
116
133
|
openapi_client/cyberdesk_cloud_client/models/run_attachment_create.py,sha256=w58KmB9lLnE2N2EQJz_DP1PQj5OEL__t9ufdQFryp0A,4965
|
|
117
134
|
openapi_client/cyberdesk_cloud_client/models/run_attachment_download_url_response.py,sha256=CUeh3Zas29uwfpH5oMbQ_hhkpsZ_RH7ZA_RyfRsf8mY,1864
|
|
118
|
-
openapi_client/cyberdesk_cloud_client/models/run_attachment_response.py,sha256=
|
|
135
|
+
openapi_client/cyberdesk_cloud_client/models/run_attachment_response.py,sha256=_K4POw4eH_5wYbu8lqH1sHc3oMXFBDPtcqWfkBx3z68,7371
|
|
119
136
|
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=
|
|
137
|
+
openapi_client/cyberdesk_cloud_client/models/run_bulk_create.py,sha256=nSMhD62M0kKgpSUTYq0l5WUHytB-p2a3-2Q4RHmxK-s,7908
|
|
121
138
|
openapi_client/cyberdesk_cloud_client/models/run_bulk_create_input_values_type_0.py,sha256=JxGOOYKueFx5NtvnXgf9z_sXbMByQrsjjQ3AmU8qG30,1305
|
|
122
139
|
openapi_client/cyberdesk_cloud_client/models/run_bulk_create_response.py,sha256=N9sMykvm6pC2fMMH_XVQI8wVc6-53qAHMb_qbNBo9-c,2886
|
|
123
|
-
openapi_client/cyberdesk_cloud_client/models/run_create.py,sha256=
|
|
140
|
+
openapi_client/cyberdesk_cloud_client/models/run_create.py,sha256=LPu8C9Ug65ZA2YKTwIWtJFpa7FXGp4OOYeQ7DN2WVDQ,7641
|
|
124
141
|
openapi_client/cyberdesk_cloud_client/models/run_create_input_values_type_0.py,sha256=APV4O0GduU3fhHoJHMMOBk-h92Hf21c1ZU-pIsJoZpg,1282
|
|
125
|
-
openapi_client/cyberdesk_cloud_client/models/run_response.py,sha256=
|
|
142
|
+
openapi_client/cyberdesk_cloud_client/models/run_response.py,sha256=H9rKD3JYcOy8Lp_IB6eOYXw5Nx7K11wRNVi4xJZ_NuU,13779
|
|
126
143
|
openapi_client/cyberdesk_cloud_client/models/run_response_input_values_type_0.py,sha256=NpMqT3qaMrLGA7mHBjvtS1fnMGc5zxwWLoFWunjjupA,1292
|
|
127
144
|
openapi_client/cyberdesk_cloud_client/models/run_response_output_data_type_0.py,sha256=rO4YJAa26G_83CFtBTQ_ZKCURAxNS7PcvdKbfuvDcrA,1287
|
|
128
145
|
openapi_client/cyberdesk_cloud_client/models/run_response_run_message_history_type_0_item.py,sha256=3x1N3yi3kyc1que3bizmHEuGBn5s7pEirEg4TgBV9FU,1348
|
|
@@ -135,7 +152,7 @@ openapi_client/cyberdesk_cloud_client/models/trajectory_create.py,sha256=vd9Y1v4
|
|
|
135
152
|
openapi_client/cyberdesk_cloud_client/models/trajectory_create_dimensions.py,sha256=PRX7oM8sseKD0nhJsQ8SYP4aOzjkMtfcza7_jWFVl9Y,1324
|
|
136
153
|
openapi_client/cyberdesk_cloud_client/models/trajectory_create_original_input_values_type_0.py,sha256=Rz80esN5_oDA-dXeZ9WFhe6POtNJXWvZjoOqw1KUVJM,1360
|
|
137
154
|
openapi_client/cyberdesk_cloud_client/models/trajectory_create_trajectory_data_item.py,sha256=_8TzdjPWMx4YzsSTCiA_45R2TrNjWhu3nlknQ8KCy_U,1324
|
|
138
|
-
openapi_client/cyberdesk_cloud_client/models/trajectory_response.py,sha256=
|
|
155
|
+
openapi_client/cyberdesk_cloud_client/models/trajectory_response.py,sha256=HC7zPIdsPma6ccM07CfA5VTdDjHlcX7whj1K3Y1IGZg,7672
|
|
139
156
|
openapi_client/cyberdesk_cloud_client/models/trajectory_response_dimensions.py,sha256=MG0Le6-JKmCF9oIymTWw1BSNYuk61CX8-EJCWhSRUjE,1334
|
|
140
157
|
openapi_client/cyberdesk_cloud_client/models/trajectory_response_original_input_values_type_0.py,sha256=ZzFZTF9Z3U8WJWrH8J5yaUOd9QN0v_T8wW9LQgYoEC8,1370
|
|
141
158
|
openapi_client/cyberdesk_cloud_client/models/trajectory_response_trajectory_data_item.py,sha256=h0JpPrd5qzo3ue4l9jBXk-R49ipVr75W_RsZw6e5cjk,1334
|
|
@@ -143,10 +160,10 @@ openapi_client/cyberdesk_cloud_client/models/trajectory_update.py,sha256=dzqD6zA
|
|
|
143
160
|
openapi_client/cyberdesk_cloud_client/models/trajectory_update_trajectory_data_type_0_item.py,sha256=3Zt8-nV3ZHjXzL1y5xKQdrHb-7ILG4EjHvtA4xabde4,1355
|
|
144
161
|
openapi_client/cyberdesk_cloud_client/models/validation_error.py,sha256=ZlK9hbhWr4zSC-dxZh9giERvMiYf9s2k8e1O9Rch_NI,2181
|
|
145
162
|
openapi_client/cyberdesk_cloud_client/models/workflow_create.py,sha256=Z7XG8k1js_cXclCJKEBV_xk25mgr3BDuYgPLuQcXWEk,3490
|
|
146
|
-
openapi_client/cyberdesk_cloud_client/models/workflow_response.py,sha256=
|
|
163
|
+
openapi_client/cyberdesk_cloud_client/models/workflow_response.py,sha256=Z4ABOHurTjNfQh1odBbEZ5YW3agm63QklKdE-gzu6dQ,8539
|
|
147
164
|
openapi_client/cyberdesk_cloud_client/models/workflow_response_old_versions_type_0_item.py,sha256=W9AxxlBlN3rUwLDcoUx5H7MUiYA9UztfX9iEpNGlgAs,1340
|
|
148
165
|
openapi_client/cyberdesk_cloud_client/models/workflow_update.py,sha256=_zMo2mJbYdKILygBXwebAD37SJJCUZOTkJkMOCzeNTA,4439
|
|
149
|
-
cyberdesk-1.
|
|
150
|
-
cyberdesk-1.
|
|
151
|
-
cyberdesk-1.
|
|
152
|
-
cyberdesk-1.
|
|
166
|
+
cyberdesk-2.1.0.dist-info/METADATA,sha256=M6-y0V107h3PXcoxREbAilLffXT9lsO4NxVsdB8F7vY,6791
|
|
167
|
+
cyberdesk-2.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
168
|
+
cyberdesk-2.1.0.dist-info/top_level.txt,sha256=qTYHZHVHh3VClNPQsiFFA8p8tmJgFGhq9G1COd-pX_A,25
|
|
169
|
+
cyberdesk-2.1.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):
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Optional, Union
|
|
3
|
+
from uuid import UUID
|
|
4
|
+
|
|
5
|
+
import httpx
|
|
6
|
+
|
|
7
|
+
from ... import errors
|
|
8
|
+
from ...client import AuthenticatedClient, Client
|
|
9
|
+
from ...models.http_validation_error import HTTPValidationError
|
|
10
|
+
from ...models.pool_response import PoolResponse
|
|
11
|
+
from ...types import Response
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def _get_kwargs(
|
|
15
|
+
machine_id: UUID,
|
|
16
|
+
) -> dict[str, Any]:
|
|
17
|
+
_kwargs: dict[str, Any] = {
|
|
18
|
+
"method": "get",
|
|
19
|
+
"url": f"/v1/machines/{machine_id}/pools",
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return _kwargs
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _parse_response(
|
|
26
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
27
|
+
) -> Optional[Union[HTTPValidationError, list["PoolResponse"]]]:
|
|
28
|
+
if response.status_code == 200:
|
|
29
|
+
response_200 = []
|
|
30
|
+
_response_200 = response.json()
|
|
31
|
+
for response_200_item_data in _response_200:
|
|
32
|
+
response_200_item = PoolResponse.from_dict(response_200_item_data)
|
|
33
|
+
|
|
34
|
+
response_200.append(response_200_item)
|
|
35
|
+
|
|
36
|
+
return response_200
|
|
37
|
+
if response.status_code == 422:
|
|
38
|
+
response_422 = HTTPValidationError.from_dict(response.json())
|
|
39
|
+
|
|
40
|
+
return response_422
|
|
41
|
+
if client.raise_on_unexpected_status:
|
|
42
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
43
|
+
else:
|
|
44
|
+
return None
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def _build_response(
|
|
48
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
49
|
+
) -> Response[Union[HTTPValidationError, list["PoolResponse"]]]:
|
|
50
|
+
return Response(
|
|
51
|
+
status_code=HTTPStatus(response.status_code),
|
|
52
|
+
content=response.content,
|
|
53
|
+
headers=response.headers,
|
|
54
|
+
parsed=_parse_response(client=client, response=response),
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
def sync_detailed(
|
|
59
|
+
machine_id: UUID,
|
|
60
|
+
*,
|
|
61
|
+
client: AuthenticatedClient,
|
|
62
|
+
) -> Response[Union[HTTPValidationError, list["PoolResponse"]]]:
|
|
63
|
+
"""Get Machine Pools
|
|
64
|
+
|
|
65
|
+
Get all pools that a machine belongs to.
|
|
66
|
+
|
|
67
|
+
Args:
|
|
68
|
+
machine_id (UUID):
|
|
69
|
+
|
|
70
|
+
Raises:
|
|
71
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
72
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
73
|
+
|
|
74
|
+
Returns:
|
|
75
|
+
Response[Union[HTTPValidationError, list['PoolResponse']]]
|
|
76
|
+
"""
|
|
77
|
+
|
|
78
|
+
kwargs = _get_kwargs(
|
|
79
|
+
machine_id=machine_id,
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
response = client.get_httpx_client().request(
|
|
83
|
+
**kwargs,
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
return _build_response(client=client, response=response)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
def sync(
|
|
90
|
+
machine_id: UUID,
|
|
91
|
+
*,
|
|
92
|
+
client: AuthenticatedClient,
|
|
93
|
+
) -> Optional[Union[HTTPValidationError, list["PoolResponse"]]]:
|
|
94
|
+
"""Get Machine Pools
|
|
95
|
+
|
|
96
|
+
Get all pools that a machine belongs to.
|
|
97
|
+
|
|
98
|
+
Args:
|
|
99
|
+
machine_id (UUID):
|
|
100
|
+
|
|
101
|
+
Raises:
|
|
102
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
103
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
104
|
+
|
|
105
|
+
Returns:
|
|
106
|
+
Union[HTTPValidationError, list['PoolResponse']]
|
|
107
|
+
"""
|
|
108
|
+
|
|
109
|
+
return sync_detailed(
|
|
110
|
+
machine_id=machine_id,
|
|
111
|
+
client=client,
|
|
112
|
+
).parsed
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
async def asyncio_detailed(
|
|
116
|
+
machine_id: UUID,
|
|
117
|
+
*,
|
|
118
|
+
client: AuthenticatedClient,
|
|
119
|
+
) -> Response[Union[HTTPValidationError, list["PoolResponse"]]]:
|
|
120
|
+
"""Get Machine Pools
|
|
121
|
+
|
|
122
|
+
Get all pools that a machine belongs to.
|
|
123
|
+
|
|
124
|
+
Args:
|
|
125
|
+
machine_id (UUID):
|
|
126
|
+
|
|
127
|
+
Raises:
|
|
128
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
129
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
130
|
+
|
|
131
|
+
Returns:
|
|
132
|
+
Response[Union[HTTPValidationError, list['PoolResponse']]]
|
|
133
|
+
"""
|
|
134
|
+
|
|
135
|
+
kwargs = _get_kwargs(
|
|
136
|
+
machine_id=machine_id,
|
|
137
|
+
)
|
|
138
|
+
|
|
139
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
140
|
+
|
|
141
|
+
return _build_response(client=client, response=response)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
async def asyncio(
|
|
145
|
+
machine_id: UUID,
|
|
146
|
+
*,
|
|
147
|
+
client: AuthenticatedClient,
|
|
148
|
+
) -> Optional[Union[HTTPValidationError, list["PoolResponse"]]]:
|
|
149
|
+
"""Get Machine Pools
|
|
150
|
+
|
|
151
|
+
Get all pools that a machine belongs to.
|
|
152
|
+
|
|
153
|
+
Args:
|
|
154
|
+
machine_id (UUID):
|
|
155
|
+
|
|
156
|
+
Raises:
|
|
157
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
158
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
159
|
+
|
|
160
|
+
Returns:
|
|
161
|
+
Union[HTTPValidationError, list['PoolResponse']]
|
|
162
|
+
"""
|
|
163
|
+
|
|
164
|
+
return (
|
|
165
|
+
await asyncio_detailed(
|
|
166
|
+
machine_id=machine_id,
|
|
167
|
+
client=client,
|
|
168
|
+
)
|
|
169
|
+
).parsed
|