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: src/main/kotlin/io/appwrite/services/Functions.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -554,7 +554,7 @@ class Functions(client: Client) : Service(client) {
554
554
/**
555
555
* Rebuild deployment
556
556
*
557
-
*
557
+
* Create a new build for an existing function deployment. This endpoint allows you to rebuild a deployment with the updated function configuration, including its entrypoint and build commands if they have been modified The build process will be queued and executed asynchronously. The original deployment's code will be preserved and used for the new build.
558
558
*
559
559
* @param functionId Function ID.
560
560
* @param deploymentId Deployment ID.
@@ -590,7 +590,7 @@ class Functions(client: Client) : Service(client) {
590
590
/**
591
591
* Cancel deployment
592
592
*
593
-
*
593
+
* Cancel an ongoing function deployment build. If the build is already in progress, it will be stopped and marked as canceled. If the build hasn't started yet, it will be marked as canceled without executing. You cannot cancel builds that have already completed (status 'ready') or failed. The response includes the final build status and details.
0 commit comments