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
:param prediction_preference: preferred prediction solution, defaults to `Preference.ECONOMY`
74
75
:type prediction_preference: Preference, optional
76
+
:param auto_apply_recs: automatically apply project recommendations, defaults to False
77
+
:type auto_apply_recs: bool, optional
75
78
:param prediction_params: dictionary of prediction parameters, defaults to None. Valid options are documented `here <https://developers.synccomputing.com/reference/create_project_v1_projects_post>`__
76
79
:type prediction_params: dict, optional
77
80
:param app_id: Apache Spark application identifier, defaults to None
@@ -88,6 +91,7 @@ def create_project(
88
91
"job_id": job_id,
89
92
"cluster_log_url": cluster_log_url,
90
93
"prediction_preference": prediction_preference,
94
+
"auto_apply_recs": auto_apply_recs,
91
95
"prediction_params": prediction_params,
92
96
"app_id": app_id,
93
97
}
@@ -112,6 +116,7 @@ def update_project(
112
116
cluster_log_url: str=None,
113
117
app_id: str=None,
114
118
prediction_preference: Preference=None,
119
+
auto_apply_recs: bool=None,
115
120
prediction_params: dict=None,
116
121
) ->Response[dict]:
117
122
"""Updates a project's mutable properties
@@ -126,6 +131,8 @@ def update_project(
126
131
:type app_id: str, optional
127
132
:param prediction_preference: default preference for predictions, defaults to None
128
133
:type prediction_preference: Preference, optional
134
+
:param auto_apply_recs: automatically apply project recommendations, defaults to None
135
+
:type auto_apply_recs: bool, optional
129
136
: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