2022-09-14 12:11:36 +00:00
|
|
|
require 'Appwrite'
|
2022-09-01 04:49:47 +00:00
|
|
|
|
2022-09-14 12:11:36 +00:00
|
|
|
include Appwrite
|
2022-09-01 04:49:47 +00:00
|
|
|
|
2022-09-14 12:11:36 +00:00
|
|
|
client = Client.new
|
2022-09-01 04:49:47 +00:00
|
|
|
.set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
|
|
|
|
|
.set_project('5df5acd0d48c2') # Your project ID
|
|
|
|
|
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
|
|
|
|
|
|
2022-09-14 12:11:36 +00:00
|
|
|
functions = Functions.new(client)
|
2022-09-01 04:49:47 +00:00
|
|
|
|
|
|
|
|
response = functions.delete_deployment(function_id: '[FUNCTION_ID]', deployment_id: '[DEPLOYMENT_ID]')
|
|
|
|
|
|
|
|
|
|
puts response.inspect
|