appwrite 2.4.1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. checksums.yaml +4 -4
  2. data/lib/appwrite/client.rb +134 -57
  3. data/lib/appwrite/exception.rb +5 -7
  4. data/lib/appwrite/file.rb +5 -13
  5. data/lib/appwrite/models/attribute_boolean.rb +52 -0
  6. data/lib/appwrite/models/attribute_email.rb +57 -0
  7. data/lib/appwrite/models/attribute_enum.rb +62 -0
  8. data/lib/appwrite/models/attribute_float.rb +62 -0
  9. data/lib/appwrite/models/attribute_integer.rb +62 -0
  10. data/lib/appwrite/models/attribute_ip.rb +57 -0
  11. data/lib/appwrite/models/attribute_list.rb +32 -0
  12. data/lib/appwrite/models/attribute_string.rb +57 -0
  13. data/lib/appwrite/models/attribute_url.rb +57 -0
  14. data/lib/appwrite/models/collection.rb +62 -0
  15. data/lib/appwrite/models/collection_list.rb +32 -0
  16. data/lib/appwrite/models/continent.rb +32 -0
  17. data/lib/appwrite/models/continent_list.rb +32 -0
  18. data/lib/appwrite/models/country.rb +32 -0
  19. data/lib/appwrite/models/country_list.rb +32 -0
  20. data/lib/appwrite/models/currency.rb +57 -0
  21. data/lib/appwrite/models/currency_list.rb +32 -0
  22. data/lib/appwrite/models/document.rb +50 -0
  23. data/lib/appwrite/models/document_list.rb +36 -0
  24. data/lib/appwrite/models/execution.rb +72 -0
  25. data/lib/appwrite/models/execution_list.rb +32 -0
  26. data/lib/appwrite/models/file.rb +62 -0
  27. data/lib/appwrite/models/file_list.rb +32 -0
  28. data/lib/appwrite/models/function.rb +92 -0
  29. data/lib/appwrite/models/function_list.rb +32 -0
  30. data/lib/appwrite/models/health_antivirus.rb +32 -0
  31. data/lib/appwrite/models/health_queue.rb +27 -0
  32. data/lib/appwrite/models/health_status.rb +32 -0
  33. data/lib/appwrite/models/health_time.rb +37 -0
  34. data/lib/appwrite/models/index.rb +47 -0
  35. data/lib/appwrite/models/index_list.rb +32 -0
  36. data/lib/appwrite/models/language.rb +37 -0
  37. data/lib/appwrite/models/language_list.rb +32 -0
  38. data/lib/appwrite/models/locale.rb +57 -0
  39. data/lib/appwrite/models/log.rb +127 -0
  40. data/lib/appwrite/models/log_list.rb +32 -0
  41. data/lib/appwrite/models/membership.rb +67 -0
  42. data/lib/appwrite/models/membership_list.rb +32 -0
  43. data/lib/appwrite/models/phone.rb +37 -0
  44. data/lib/appwrite/models/phone_list.rb +32 -0
  45. data/lib/appwrite/models/preferences.rb +30 -0
  46. data/lib/appwrite/models/runtime.rb +57 -0
  47. data/lib/appwrite/models/runtime_list.rb +32 -0
  48. data/lib/appwrite/models/session.rb +132 -0
  49. data/lib/appwrite/models/session_list.rb +32 -0
  50. data/lib/appwrite/models/tag.rb +47 -0
  51. data/lib/appwrite/models/tag_list.rb +32 -0
  52. data/lib/appwrite/models/team.rb +42 -0
  53. data/lib/appwrite/models/team_list.rb +32 -0
  54. data/lib/appwrite/models/token.rb +42 -0
  55. data/lib/appwrite/models/user.rb +62 -0
  56. data/lib/appwrite/models/user_list.rb +32 -0
  57. data/lib/appwrite/query.rb +42 -0
  58. data/lib/appwrite/service.rb +0 -5
  59. data/lib/appwrite/services/account.rb +370 -138
  60. data/lib/appwrite/services/avatars.rb +189 -125
  61. data/lib/appwrite/services/database.rb +876 -130
  62. data/lib/appwrite/services/functions.rb +364 -182
  63. data/lib/appwrite/services/health.rb +202 -58
  64. data/lib/appwrite/services/locale.rb +134 -32
  65. data/lib/appwrite/services/storage.rb +210 -121
  66. data/lib/appwrite/services/teams.rb +299 -118
  67. data/lib/appwrite/services/users.rb +322 -127
  68. data/lib/appwrite.rb +55 -0
  69. metadata +72 -111
  70. data/.github/ISSUE_TEMPLATE/bug.yaml +0 -82
  71. data/.github/ISSUE_TEMPLATE/documentation.yaml +0 -32
  72. data/.github/ISSUE_TEMPLATE/feature.yaml +0 -40
  73. data/.travis.yml +0 -16
  74. data/CHANGELOG.md +0 -1
  75. data/Gemfile +0 -4
  76. data/LICENSE +0 -12
  77. data/README.md +0 -96
  78. data/appwrite.gemspec +0 -11
  79. data/docs/examples/account/create-recovery.md +0 -15
  80. data/docs/examples/account/create-verification.md +0 -15
  81. data/docs/examples/account/delete-session.md +0 -15
  82. data/docs/examples/account/delete-sessions.md +0 -15
  83. data/docs/examples/account/delete.md +0 -15
  84. data/docs/examples/account/get-logs.md +0 -15
  85. data/docs/examples/account/get-prefs.md +0 -15
  86. data/docs/examples/account/get-session.md +0 -15
  87. data/docs/examples/account/get-sessions.md +0 -15
  88. data/docs/examples/account/get.md +0 -15
  89. data/docs/examples/account/update-email.md +0 -15
  90. data/docs/examples/account/update-name.md +0 -15
  91. data/docs/examples/account/update-password.md +0 -15
  92. data/docs/examples/account/update-prefs.md +0 -15
  93. data/docs/examples/account/update-recovery.md +0 -15
  94. data/docs/examples/account/update-verification.md +0 -15
  95. data/docs/examples/avatars/get-browser.md +0 -15
  96. data/docs/examples/avatars/get-credit-card.md +0 -15
  97. data/docs/examples/avatars/get-favicon.md +0 -15
  98. data/docs/examples/avatars/get-flag.md +0 -15
  99. data/docs/examples/avatars/get-image.md +0 -15
  100. data/docs/examples/avatars/get-initials.md +0 -15
  101. data/docs/examples/avatars/get-q-r.md +0 -15
  102. data/docs/examples/database/create-collection.md +0 -15
  103. data/docs/examples/database/create-document.md +0 -15
  104. data/docs/examples/database/delete-collection.md +0 -15
  105. data/docs/examples/database/delete-document.md +0 -15
  106. data/docs/examples/database/get-collection.md +0 -15
  107. data/docs/examples/database/get-document.md +0 -15
  108. data/docs/examples/database/list-collections.md +0 -15
  109. data/docs/examples/database/list-documents.md +0 -15
  110. data/docs/examples/database/update-collection.md +0 -15
  111. data/docs/examples/database/update-document.md +0 -15
  112. data/docs/examples/functions/create-execution.md +0 -15
  113. data/docs/examples/functions/create-tag.md +0 -15
  114. data/docs/examples/functions/create.md +0 -15
  115. data/docs/examples/functions/delete-tag.md +0 -15
  116. data/docs/examples/functions/delete.md +0 -15
  117. data/docs/examples/functions/get-execution.md +0 -15
  118. data/docs/examples/functions/get-tag.md +0 -15
  119. data/docs/examples/functions/get.md +0 -15
  120. data/docs/examples/functions/list-executions.md +0 -15
  121. data/docs/examples/functions/list-tags.md +0 -15
  122. data/docs/examples/functions/list.md +0 -15
  123. data/docs/examples/functions/update-tag.md +0 -15
  124. data/docs/examples/functions/update.md +0 -15
  125. data/docs/examples/health/get-anti-virus.md +0 -15
  126. data/docs/examples/health/get-cache.md +0 -15
  127. data/docs/examples/health/get-d-b.md +0 -15
  128. data/docs/examples/health/get-queue-certificates.md +0 -15
  129. data/docs/examples/health/get-queue-functions.md +0 -15
  130. data/docs/examples/health/get-queue-logs.md +0 -15
  131. data/docs/examples/health/get-queue-tasks.md +0 -15
  132. data/docs/examples/health/get-queue-usage.md +0 -15
  133. data/docs/examples/health/get-queue-webhooks.md +0 -15
  134. data/docs/examples/health/get-storage-local.md +0 -15
  135. data/docs/examples/health/get-time.md +0 -15
  136. data/docs/examples/health/get.md +0 -15
  137. data/docs/examples/locale/get-continents.md +0 -15
  138. data/docs/examples/locale/get-countries-e-u.md +0 -15
  139. data/docs/examples/locale/get-countries-phones.md +0 -15
  140. data/docs/examples/locale/get-countries.md +0 -15
  141. data/docs/examples/locale/get-currencies.md +0 -15
  142. data/docs/examples/locale/get-languages.md +0 -15
  143. data/docs/examples/locale/get.md +0 -15
  144. data/docs/examples/storage/create-file.md +0 -15
  145. data/docs/examples/storage/delete-file.md +0 -15
  146. data/docs/examples/storage/get-file-download.md +0 -15
  147. data/docs/examples/storage/get-file-preview.md +0 -15
  148. data/docs/examples/storage/get-file-view.md +0 -15
  149. data/docs/examples/storage/get-file.md +0 -15
  150. data/docs/examples/storage/list-files.md +0 -15
  151. data/docs/examples/storage/update-file.md +0 -15
  152. data/docs/examples/teams/create-membership.md +0 -15
  153. data/docs/examples/teams/create.md +0 -15
  154. data/docs/examples/teams/delete-membership.md +0 -15
  155. data/docs/examples/teams/delete.md +0 -15
  156. data/docs/examples/teams/get-memberships.md +0 -15
  157. data/docs/examples/teams/get.md +0 -15
  158. data/docs/examples/teams/list.md +0 -15
  159. data/docs/examples/teams/update-membership-roles.md +0 -15
  160. data/docs/examples/teams/update-membership-status.md +0 -15
  161. data/docs/examples/teams/update.md +0 -15
  162. data/docs/examples/users/create.md +0 -15
  163. data/docs/examples/users/delete-session.md +0 -15
  164. data/docs/examples/users/delete-sessions.md +0 -15
  165. data/docs/examples/users/delete.md +0 -15
  166. data/docs/examples/users/get-logs.md +0 -15
  167. data/docs/examples/users/get-prefs.md +0 -15
  168. data/docs/examples/users/get-sessions.md +0 -15
  169. data/docs/examples/users/get.md +0 -15
  170. data/docs/examples/users/list.md +0 -15
  171. data/docs/examples/users/update-email.md +0 -15
  172. data/docs/examples/users/update-name.md +0 -15
  173. data/docs/examples/users/update-password.md +0 -15
  174. data/docs/examples/users/update-prefs.md +0 -15
  175. data/docs/examples/users/update-status.md +0 -15
  176. data/docs/examples/users/update-verification.md +0 -15
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9
- ;
10
-
11
- account = Appwrite::Account.new(client);
12
-
13
- response = account.get();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9
- ;
10
-
11
- account = Appwrite::Account.new(client);
12
-
13
- response = account.update_email(email: 'email@example.com', password: 'password');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9
- ;
10
-
11
- account = Appwrite::Account.new(client);
12
-
13
- response = account.update_name(name: '[NAME]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9
- ;
10
-
11
- account = Appwrite::Account.new(client);
12
-
13
- response = account.update_password(password: 'password');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9
- ;
10
-
11
- account = Appwrite::Account.new(client);
12
-
13
- response = account.update_prefs(prefs: {});
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9
- ;
10
-
11
- account = Appwrite::Account.new(client);
12
-
13
- response = account.update_recovery(user_id: '[USER_ID]', secret: '[SECRET]', password: 'password', password_again: 'password');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
9
- ;
10
-
11
- account = Appwrite::Account.new(client);
12
-
13
- response = account.update_verification(user_id: '[USER_ID]', secret: '[SECRET]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- avatars = Appwrite::Avatars.new(client);
12
-
13
- response = avatars.get_browser(code: 'aa');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- avatars = Appwrite::Avatars.new(client);
12
-
13
- response = avatars.get_credit_card(code: 'amex');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- avatars = Appwrite::Avatars.new(client);
12
-
13
- response = avatars.get_favicon(url: 'https://example.com');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- avatars = Appwrite::Avatars.new(client);
12
-
13
- response = avatars.get_flag(code: 'af');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- avatars = Appwrite::Avatars.new(client);
12
-
13
- response = avatars.get_image(url: 'https://example.com');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- avatars = Appwrite::Avatars.new(client);
12
-
13
- response = avatars.get_initials();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- avatars = Appwrite::Avatars.new(client);
12
-
13
- response = avatars.get_qr(text: '[TEXT]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.create_collection(name: '[NAME]', read: [], write: [], rules: []);
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.create_document(collection_id: '[COLLECTION_ID]', data: {});
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.delete_collection(collection_id: '[COLLECTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.delete_document(collection_id: '[COLLECTION_ID]', document_id: '[DOCUMENT_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.get_collection(collection_id: '[COLLECTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.get_document(collection_id: '[COLLECTION_ID]', document_id: '[DOCUMENT_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.list_collections();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.list_documents(collection_id: '[COLLECTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.update_collection(collection_id: '[COLLECTION_ID]', name: '[NAME]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- database = Appwrite::Database.new(client);
12
-
13
- response = database.update_document(collection_id: '[COLLECTION_ID]', document_id: '[DOCUMENT_ID]', data: {});
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.create_execution(function_id: '[FUNCTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.create_tag(function_id: '[FUNCTION_ID]', command: '[COMMAND]', code: Appwrite::File.new());
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.create(name: '[NAME]', execute: [], runtime: 'dotnet-5.0');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.delete_tag(function_id: '[FUNCTION_ID]', tag_id: '[TAG_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.delete(function_id: '[FUNCTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.get_execution(function_id: '[FUNCTION_ID]', execution_id: '[EXECUTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.get_tag(function_id: '[FUNCTION_ID]', tag_id: '[TAG_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.get(function_id: '[FUNCTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.list_executions(function_id: '[FUNCTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.list_tags(function_id: '[FUNCTION_ID]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.list();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.update_tag(function_id: '[FUNCTION_ID]', tag: '[TAG]');
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- functions = Appwrite::Functions.new(client);
12
-
13
- response = functions.update(function_id: '[FUNCTION_ID]', name: '[NAME]', execute: []);
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- health = Appwrite::Health.new(client);
12
-
13
- response = health.get_anti_virus();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- health = Appwrite::Health.new(client);
12
-
13
- response = health.get_cache();
14
-
15
- puts response
@@ -1,15 +0,0 @@
1
- require 'appwrite'
2
-
3
- client = Appwrite::Client.new()
4
-
5
- client
6
- .set_endpoint('https://[HOSTNAME_OR_IP]/v1') # Your API Endpoint
7
- .set_project('5df5acd0d48c2') # Your project ID
8
- .set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
9
- ;
10
-
11
- health = Appwrite::Health.new(client);
12
-
13
- response = health.get_db();
14
-
15
- puts response