appwrite/docs/examples/1.5.x/server-ruby/examples/databases/update-collection.md

20 lines
536 B
Markdown
Raw Normal View History

2024-02-05 12:40:51 +00:00
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
databases = Databases.new(client)
2024-02-27 08:12:00 +00:00
result = databases.update_collection(
2024-02-24 11:34:42 +00:00
database_id: '<DATABASE_ID>',
collection_id: '<COLLECTION_ID>',
name: '<NAME>',
2024-02-21 11:31:50 +00:00
permissions: ["read("any")"], # optional
document_security: false, # optional
enabled: false # optional
)