You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sync/api/projects.py
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,7 @@ def update_project(
102
102
project_id: str,
103
103
description: str=None,
104
104
s3_url: str=None,
105
+
app_id: str=None,
105
106
prediction_preference: Preference=None,
106
107
prediction_params: dict=None,
107
108
) ->Response[dict]:
@@ -113,6 +114,8 @@ def update_project(
113
114
:type description: str, optional
114
115
:param s3_url: location of project event logs and configurations, defaults to None
115
116
:type s3_url: str, optional
117
+
:param app_id: external identifier, defaults to None
118
+
:type app_id: str, optional
116
119
:param prediction_preference: default preference for predictions, defaults to None
117
120
:type prediction_preference: Preference, optional
118
121
:param prediction_params: dictionary of prediction parameters, defaults to None. Valid options are documented `here <https://developers.synccomputing.com/reference/update_project_v1_projects__project_id__put>`__
0 commit comments