Update SDK generator + examples

This commit is contained in:
Jake Barnby 2023-05-16 16:54:34 +12:00
parent 67f1ae377c
commit 2eef1cfca5
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C
172 changed files with 512 additions and 512 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

12
composer.lock generated
View file

@ -3034,16 +3034,16 @@
"packages-dev": [
{
"name": "appwrite/sdk-generator",
"version": "0.33.0",
"version": "0.33.1",
"source": {
"type": "git",
"url": "https://github.com/appwrite/sdk-generator.git",
"reference": "6d747e4dcc09f8390692f61a9c70f6ece9c70ef9"
"reference": "551cdae31a68b19874f10ca321b1d08cfa06a13f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/6d747e4dcc09f8390692f61a9c70f6ece9c70ef9",
"reference": "6d747e4dcc09f8390692f61a9c70f6ece9c70ef9",
"url": "https://api.github.com/repos/appwrite/sdk-generator/zipball/551cdae31a68b19874f10ca321b1d08cfa06a13f",
"reference": "551cdae31a68b19874f10ca321b1d08cfa06a13f",
"shasum": ""
},
"require": {
@ -3079,9 +3079,9 @@
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
"support": {
"issues": "https://github.com/appwrite/sdk-generator/issues",
"source": "https://github.com/appwrite/sdk-generator/tree/0.33.0"
"source": "https://github.com/appwrite/sdk-generator/tree/0.33.1"
},
"time": "2023-05-14T05:57:41+00:00"
"time": "2023-05-16T04:37:34+00:00"
},
{
"name": "doctrine/deprecations",

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Token result = await account.CreatePhoneVerification();

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Token result = await account.CreateRecovery(
email: "email@example.com",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Token result = await account.CreateVerification(
url: "https://example.com");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
result = await account.DeleteSession(
await account.DeleteSession(
sessionId: "[SESSION_ID]");

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
result = await account.DeleteSessions();
await account.DeleteSessions();

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Preferences result = await account.GetPrefs();

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Session result = await account.GetSession(
sessionId: "[SESSION_ID]");

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
User result = await account.Get();

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
LogList result = await account.ListLogs();

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
SessionList result = await account.ListSessions();

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
User result = await account.UpdateEmail(
email: "email@example.com",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
User result = await account.UpdateName(
name: "[NAME]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
User result = await account.UpdatePassword(
password: "");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Token result = await account.UpdatePhoneVerification(
userId: "[USER_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
User result = await account.UpdatePhone(
phone: "+12065550100",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
User result = await account.UpdatePrefs(
prefs: [object]);

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Token result = await account.UpdateRecovery(
userId: "[USER_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Session result = await account.UpdateSession(
sessionId: "[SESSION_ID]");

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
User result = await account.UpdateStatus();

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetJWT("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ..."); // Your secret JSON Web Token
Account account = new Account(client);
var account = new Account(client);
Token result = await account.UpdateVerification(
userId: "[USER_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Avatars avatars = new Avatars(client);
var avatars = new Avatars(client);
byte[] result = await avatars.GetBrowser(
code: "aa");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Avatars avatars = new Avatars(client);
var avatars = new Avatars(client);
byte[] result = await avatars.GetCreditCard(
code: "amex");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Avatars avatars = new Avatars(client);
var avatars = new Avatars(client);
byte[] result = await avatars.GetFavicon(
url: "https://example.com");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Avatars avatars = new Avatars(client);
var avatars = new Avatars(client);
byte[] result = await avatars.GetFlag(
code: "af");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Avatars avatars = new Avatars(client);
var avatars = new Avatars(client);
byte[] result = await avatars.GetImage(
url: "https://example.com");

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Avatars avatars = new Avatars(client);
var avatars = new Avatars(client);
byte[] result = await avatars.GetInitials();

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Avatars avatars = new Avatars(client);
var avatars = new Avatars(client);
byte[] result = await avatars.GetQR(
text: "[TEXT]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeBoolean result = await databases.CreateBooleanAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Collection result = await databases.CreateCollection(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeDatetime result = await databases.CreateDatetimeAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Document result = await databases.CreateDocument(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeEmail result = await databases.CreateEmailAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeEnum result = await databases.CreateEnumAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeFloat result = await databases.CreateFloatAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Index result = await databases.CreateIndex(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeInteger result = await databases.CreateIntegerAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeIp result = await databases.CreateIpAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeRelationship result = await databases.CreateRelationshipAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeString result = await databases.CreateStringAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeUrl result = await databases.CreateUrlAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Database result = await databases.Create(
databaseId: "[DATABASE_ID]",

View file

@ -1,14 +1,14 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
result = await databases.DeleteAttribute(
await databases.DeleteAttribute(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: "");

View file

@ -1,13 +1,13 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
result = await databases.DeleteCollection(
await databases.DeleteCollection(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]");

View file

@ -1,14 +1,14 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
result = await databases.DeleteDocument(
await databases.DeleteDocument(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
documentId: "[DOCUMENT_ID]");

View file

@ -1,14 +1,14 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
result = await databases.DeleteIndex(
await databases.DeleteIndex(
databaseId: "[DATABASE_ID]",
collectionId: "[COLLECTION_ID]",
key: "");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
result = await databases.Delete(
await databases.Delete(
databaseId: "[DATABASE_ID]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
result = await databases.GetAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Collection result = await databases.GetCollection(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Document result = await databases.GetDocument(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Index result = await databases.GetIndex(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Database result = await databases.Get(
databaseId: "[DATABASE_ID]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeList result = await databases.ListAttributes(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
CollectionList result = await databases.ListCollections(
databaseId: "[DATABASE_ID]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
DocumentList result = await databases.ListDocuments(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
IndexList result = await databases.ListIndexes(
databaseId: "[DATABASE_ID]",

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
DatabaseList result = await databases.List();

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeBoolean result = await databases.UpdateBooleanAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Collection result = await databases.UpdateCollection(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeDatetime result = await databases.UpdateDatetimeAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Document result = await databases.UpdateDocument(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeEmail result = await databases.UpdateEmailAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeEnum result = await databases.UpdateEnumAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeFloat result = await databases.UpdateFloatAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeInteger result = await databases.UpdateIntegerAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeIp result = await databases.UpdateIpAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeRelationship result = await databases.UpdateRelationshipAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeString result = await databases.UpdateStringAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
AttributeUrl result = await databases.UpdateUrlAttribute(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Databases databases = new Databases(client);
var databases = new Databases(client);
Database result = await databases.Update(
databaseId: "[DATABASE_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
result = await functions.CreateBuild(
functionId: "[FUNCTION_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Deployment result = await functions.CreateDeployment(
functionId: "[FUNCTION_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Execution result = await functions.CreateExecution(
functionId: "[FUNCTION_ID]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Variable result = await functions.CreateVariable(
functionId: "[FUNCTION_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Function result = await functions.Create(
functionId: "[FUNCTION_ID]",

View file

@ -1,13 +1,13 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
result = await functions.DeleteDeployment(
await functions.DeleteDeployment(
functionId: "[FUNCTION_ID]",
deploymentId: "[DEPLOYMENT_ID]");

View file

@ -1,13 +1,13 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
result = await functions.DeleteVariable(
await functions.DeleteVariable(
functionId: "[FUNCTION_ID]",
variableId: "[VARIABLE_ID]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
result = await functions.Delete(
await functions.Delete(
functionId: "[FUNCTION_ID]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Deployment result = await functions.GetDeployment(
functionId: "[FUNCTION_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Execution result = await functions.GetExecution(
functionId: "[FUNCTION_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Variable result = await functions.GetVariable(
functionId: "[FUNCTION_ID]",

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Function result = await functions.Get(
functionId: "[FUNCTION_ID]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
DeploymentList result = await functions.ListDeployments(
functionId: "[FUNCTION_ID]");

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
ExecutionList result = await functions.ListExecutions(
functionId: "[FUNCTION_ID]");

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
RuntimeList result = await functions.ListRuntimes();

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
VariableList result = await functions.ListVariables(
functionId: "[FUNCTION_ID]");

View file

@ -1,11 +1,11 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
FunctionList result = await functions.List();

View file

@ -1,12 +1,12 @@
using Appwrite;
using Appwrite.Models;
Client client = new Client()
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
var client = new Client()
.SetEndPoint("https://cloud.appwrite.io/v1") // Your API Endpoint
.SetProject("5df5acd0d48c2") // Your project ID
.SetKey("919c2d18fb5d4...a2ae413da83346ad2"); // Your secret API key
Functions functions = new Functions(client);
var functions = new Functions(client);
Function result = await functions.UpdateDeployment(
functionId: "[FUNCTION_ID]",

Some files were not shown because too many files have changed in this diff Show more