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 transformation_id: Unique identifier of a transformation. (required)
4158
+
:type transformation_id: str
4159
+
:param transformation_try: (required)
4160
+
:type transformation_try: TransformationTry
4161
+
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
4162
+
:return: Returns the raw algoliasearch 'APIResponse' object.
4163
+
"""
4164
+
4165
+
iftransformation_idisNone:
4166
+
raiseValueError(
4167
+
"Parameter `transformation_id` is required when calling `try_transformation_before_update`."
4168
+
)
4169
+
4170
+
iftransformation_tryisNone:
4171
+
raiseValueError(
4172
+
"Parameter `transformation_try` is required when calling `try_transformation_before_update`."
:param transformation_id: Unique identifier of a transformation. (required)
4208
+
:type transformation_id: str
4209
+
:param transformation_try: (required)
4210
+
:type transformation_try: TransformationTry
4211
+
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
4212
+
:return: Returns the deserialized response in a 'TransformationTryResponse' result object.
0 commit comments