cyberdesk 2.1.8__py3-none-any.whl → 2.1.9__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 +15 -5
- {cyberdesk-2.1.8.dist-info → cyberdesk-2.1.9.dist-info}/METADATA +1 -1
- {cyberdesk-2.1.8.dist-info → cyberdesk-2.1.9.dist-info}/RECORD +7 -7
- {cyberdesk-2.1.8.dist-info → cyberdesk-2.1.9.dist-info}/WHEEL +0 -0
- {cyberdesk-2.1.8.dist-info → cyberdesk-2.1.9.dist-info}/licenses/LICENSE +0 -0
- {cyberdesk-2.1.8.dist-info → cyberdesk-2.1.9.dist-info}/top_level.txt +0 -0
cyberdesk/__init__.py
CHANGED
cyberdesk/client.py
CHANGED
|
@@ -831,6 +831,7 @@ class RunsAPI:
|
|
|
831
831
|
status: Optional[RunStatus] = None,
|
|
832
832
|
workflow_id: Optional[str] = None,
|
|
833
833
|
machine_id: Optional[str] = None,
|
|
834
|
+
session_id: Optional[str] = None,
|
|
834
835
|
*,
|
|
835
836
|
created_at_from: Optional[Union[str, datetime]] = None,
|
|
836
837
|
created_at_to: Optional[Union[str, datetime]] = None,
|
|
@@ -844,6 +845,7 @@ class RunsAPI:
|
|
|
844
845
|
status=status,
|
|
845
846
|
workflow_id=_to_uuid(workflow_id) if workflow_id else UNSET,
|
|
846
847
|
machine_id=_to_uuid(machine_id) if machine_id else UNSET,
|
|
848
|
+
session_id=_to_uuid(session_id) if session_id else UNSET,
|
|
847
849
|
created_at_from=_to_unset_or_value(_to_iso_utc_str(created_at_from)),
|
|
848
850
|
created_at_to=_to_unset_or_value(_to_iso_utc_str(created_at_to)),
|
|
849
851
|
)
|
|
@@ -858,6 +860,7 @@ class RunsAPI:
|
|
|
858
860
|
status: Optional[RunStatus] = None,
|
|
859
861
|
workflow_id: Optional[str] = None,
|
|
860
862
|
machine_id: Optional[str] = None,
|
|
863
|
+
session_id: Optional[str] = None,
|
|
861
864
|
*,
|
|
862
865
|
created_at_from: Optional[Union[str, datetime]] = None,
|
|
863
866
|
created_at_to: Optional[Union[str, datetime]] = None,
|
|
@@ -871,6 +874,7 @@ class RunsAPI:
|
|
|
871
874
|
status=status,
|
|
872
875
|
workflow_id=_to_uuid(workflow_id) if workflow_id else UNSET,
|
|
873
876
|
machine_id=_to_uuid(machine_id) if machine_id else UNSET,
|
|
877
|
+
session_id=_to_uuid(session_id) if session_id else UNSET,
|
|
874
878
|
created_at_from=_to_unset_or_value(_to_iso_utc_str(created_at_from)),
|
|
875
879
|
created_at_to=_to_unset_or_value(_to_iso_utc_str(created_at_to)),
|
|
876
880
|
)
|
|
@@ -888,8 +892,10 @@ class RunsAPI:
|
|
|
888
892
|
- pool_ids: Optional list of pool IDs (machine must be in ALL specified pools)
|
|
889
893
|
- input_values: Optional input values for workflow variables
|
|
890
894
|
- file_inputs: Optional files to upload to the machine
|
|
891
|
-
-
|
|
895
|
+
- sensitive_input_values: Optional sensitive inputs (stored securely, not in DB)
|
|
892
896
|
- session_id: Optional UUID to join an existing session
|
|
897
|
+
- start_session: Optional bool to start a new machine session
|
|
898
|
+
- session_alias: Optional alias to persist outputs for refs in this session
|
|
893
899
|
|
|
894
900
|
Returns:
|
|
895
901
|
ApiResponse with RunResponse
|
|
@@ -913,8 +919,10 @@ class RunsAPI:
|
|
|
913
919
|
- pool_ids: Optional list of pool IDs (machine must be in ALL specified pools)
|
|
914
920
|
- input_values: Optional input values for workflow variables
|
|
915
921
|
- file_inputs: Optional files to upload to the machine
|
|
916
|
-
-
|
|
922
|
+
- sensitive_input_values: Optional sensitive inputs (stored securely, not in DB)
|
|
917
923
|
- session_id: Optional UUID to join an existing session
|
|
924
|
+
- start_session: Optional bool to start a new machine session
|
|
925
|
+
- session_alias: Optional alias to persist outputs for refs in this session
|
|
918
926
|
|
|
919
927
|
Returns:
|
|
920
928
|
ApiResponse with RunResponse
|
|
@@ -1011,9 +1019,10 @@ class RunsAPI:
|
|
|
1011
1019
|
- pool_ids: Optional list of pool IDs (machine must be in ALL specified pools)
|
|
1012
1020
|
- input_values: Optional input values for workflow variables
|
|
1013
1021
|
- file_inputs: Optional files to upload to the machine
|
|
1022
|
+
- sensitive_input_values: Optional sensitive inputs (stored securely, not in DB)
|
|
1014
1023
|
- count: Number of runs to create (max 1000)
|
|
1015
|
-
- start_session: Optional bool to start a new machine session for all runs
|
|
1016
1024
|
- session_id: Optional UUID to join an existing session for all runs
|
|
1025
|
+
- start_session: Optional bool to start a new machine session for all runs
|
|
1017
1026
|
|
|
1018
1027
|
Returns:
|
|
1019
1028
|
ApiResponse with RunBulkCreateResponse containing:
|
|
@@ -1045,9 +1054,10 @@ class RunsAPI:
|
|
|
1045
1054
|
- pool_ids: Optional list of pool IDs (machine must be in ALL specified pools)
|
|
1046
1055
|
- input_values: Optional input values for workflow variables
|
|
1047
1056
|
- file_inputs: Optional files to upload to the machine
|
|
1057
|
+
- sensitive_input_values: Optional sensitive inputs (stored securely, not in DB)
|
|
1048
1058
|
- count: Number of runs to create (max 1000)
|
|
1049
|
-
- start_session: Optional bool to start a new machine session for all runs
|
|
1050
1059
|
- session_id: Optional UUID to join an existing session for all runs
|
|
1060
|
+
- start_session: Optional bool to start a new machine session for all runs
|
|
1051
1061
|
|
|
1052
1062
|
Returns:
|
|
1053
1063
|
ApiResponse with RunBulkCreateResponse containing:
|
|
@@ -1070,7 +1080,7 @@ class RunsAPI:
|
|
|
1070
1080
|
Args:
|
|
1071
1081
|
data: WorkflowChainCreate with steps (session_alias, inputs),
|
|
1072
1082
|
optional shared_inputs/sensitive/file_inputs, and optional
|
|
1073
|
-
session_id or machine_id/
|
|
1083
|
+
session_id or machine_id/pool_ids for session start.
|
|
1074
1084
|
|
|
1075
1085
|
Returns:
|
|
1076
1086
|
ApiResponse with WorkflowChainResponse
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
cyberdesk/__init__.py,sha256=
|
|
2
|
-
cyberdesk/client.py,sha256=
|
|
3
|
-
cyberdesk-2.1.
|
|
1
|
+
cyberdesk/__init__.py,sha256=5VKjez7uxVcMLTQxLeiomzH890wBm0GcccBUeyUVft4,1157
|
|
2
|
+
cyberdesk/client.py,sha256=xoyf27GFx-EwSbotAA1NlBF46hTHLlkznqH1KZJUPjk,65917
|
|
3
|
+
cyberdesk-2.1.9.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
|
|
@@ -180,7 +180,7 @@ openapi_client/cyberdesk_cloud_client/models/workflow_create.py,sha256=d0bfNbNBF
|
|
|
180
180
|
openapi_client/cyberdesk_cloud_client/models/workflow_response.py,sha256=k48mouJ6Dcisz2vyM7Rb_cbjU66JudGVPsq4UC7grHA,8977
|
|
181
181
|
openapi_client/cyberdesk_cloud_client/models/workflow_response_old_versions_type_0_item.py,sha256=W9AxxlBlN3rUwLDcoUx5H7MUiYA9UztfX9iEpNGlgAs,1340
|
|
182
182
|
openapi_client/cyberdesk_cloud_client/models/workflow_update.py,sha256=TG2jEitXixS2thtz7lTxTZaE0RBVSWd-apVxWxsvnrg,5333
|
|
183
|
-
cyberdesk-2.1.
|
|
184
|
-
cyberdesk-2.1.
|
|
185
|
-
cyberdesk-2.1.
|
|
186
|
-
cyberdesk-2.1.
|
|
183
|
+
cyberdesk-2.1.9.dist-info/METADATA,sha256=2fC-OcQ_FIvZ6owLUCujcWoDoddrwipWQWBpT3gUCGY,6791
|
|
184
|
+
cyberdesk-2.1.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
185
|
+
cyberdesk-2.1.9.dist-info/top_level.txt,sha256=qTYHZHVHh3VClNPQsiFFA8p8tmJgFGhq9G1COd-pX_A,25
|
|
186
|
+
cyberdesk-2.1.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|