|
| 1 | +using System; |
| 2 | + |
| 3 | +namespace Appwrite.Enums |
| 4 | +{ |
| 5 | + public class BuildRuntime : IEnum |
| 6 | + { |
| 7 | + public string Value { get; private set; } |
| 8 | + |
| 9 | + public BuildRuntime(string value) |
| 10 | + { |
| 11 | + Value = value; |
| 12 | + } |
| 13 | + |
| 14 | + public static BuildRuntime Node145 => new BuildRuntime("node-14.5"); |
| 15 | + public static BuildRuntime Node160 => new BuildRuntime("node-16.0"); |
| 16 | + public static BuildRuntime Node180 => new BuildRuntime("node-18.0"); |
| 17 | + public static BuildRuntime Node190 => new BuildRuntime("node-19.0"); |
| 18 | + public static BuildRuntime Node200 => new BuildRuntime("node-20.0"); |
| 19 | + public static BuildRuntime Node210 => new BuildRuntime("node-21.0"); |
| 20 | + public static BuildRuntime Node22 => new BuildRuntime("node-22"); |
| 21 | + public static BuildRuntime Php80 => new BuildRuntime("php-8.0"); |
| 22 | + public static BuildRuntime Php81 => new BuildRuntime("php-8.1"); |
| 23 | + public static BuildRuntime Php82 => new BuildRuntime("php-8.2"); |
| 24 | + public static BuildRuntime Php83 => new BuildRuntime("php-8.3"); |
| 25 | + public static BuildRuntime Ruby30 => new BuildRuntime("ruby-3.0"); |
| 26 | + public static BuildRuntime Ruby31 => new BuildRuntime("ruby-3.1"); |
| 27 | + public static BuildRuntime Ruby32 => new BuildRuntime("ruby-3.2"); |
| 28 | + public static BuildRuntime Ruby33 => new BuildRuntime("ruby-3.3"); |
| 29 | + public static BuildRuntime Python38 => new BuildRuntime("python-3.8"); |
| 30 | + public static BuildRuntime Python39 => new BuildRuntime("python-3.9"); |
| 31 | + public static BuildRuntime Python310 => new BuildRuntime("python-3.10"); |
| 32 | + public static BuildRuntime Python311 => new BuildRuntime("python-3.11"); |
| 33 | + public static BuildRuntime Python312 => new BuildRuntime("python-3.12"); |
| 34 | + public static BuildRuntime PythonMl311 => new BuildRuntime("python-ml-3.11"); |
| 35 | + public static BuildRuntime PythonMl312 => new BuildRuntime("python-ml-3.12"); |
| 36 | + public static BuildRuntime Deno121 => new BuildRuntime("deno-1.21"); |
| 37 | + public static BuildRuntime Deno124 => new BuildRuntime("deno-1.24"); |
| 38 | + public static BuildRuntime Deno135 => new BuildRuntime("deno-1.35"); |
| 39 | + public static BuildRuntime Deno140 => new BuildRuntime("deno-1.40"); |
| 40 | + public static BuildRuntime Deno146 => new BuildRuntime("deno-1.46"); |
| 41 | + public static BuildRuntime Deno20 => new BuildRuntime("deno-2.0"); |
| 42 | + public static BuildRuntime Dart215 => new BuildRuntime("dart-2.15"); |
| 43 | + public static BuildRuntime Dart216 => new BuildRuntime("dart-2.16"); |
| 44 | + public static BuildRuntime Dart217 => new BuildRuntime("dart-2.17"); |
| 45 | + public static BuildRuntime Dart218 => new BuildRuntime("dart-2.18"); |
| 46 | + public static BuildRuntime Dart219 => new BuildRuntime("dart-2.19"); |
| 47 | + public static BuildRuntime Dart30 => new BuildRuntime("dart-3.0"); |
| 48 | + public static BuildRuntime Dart31 => new BuildRuntime("dart-3.1"); |
| 49 | + public static BuildRuntime Dart33 => new BuildRuntime("dart-3.3"); |
| 50 | + public static BuildRuntime Dart35 => new BuildRuntime("dart-3.5"); |
| 51 | + public static BuildRuntime Dotnet60 => new BuildRuntime("dotnet-6.0"); |
| 52 | + public static BuildRuntime Dotnet70 => new BuildRuntime("dotnet-7.0"); |
| 53 | + public static BuildRuntime Dotnet80 => new BuildRuntime("dotnet-8.0"); |
| 54 | + public static BuildRuntime Java80 => new BuildRuntime("java-8.0"); |
| 55 | + public static BuildRuntime Java110 => new BuildRuntime("java-11.0"); |
| 56 | + public static BuildRuntime Java170 => new BuildRuntime("java-17.0"); |
| 57 | + public static BuildRuntime Java180 => new BuildRuntime("java-18.0"); |
| 58 | + public static BuildRuntime Java210 => new BuildRuntime("java-21.0"); |
| 59 | + public static BuildRuntime Java22 => new BuildRuntime("java-22"); |
| 60 | + public static BuildRuntime Swift55 => new BuildRuntime("swift-5.5"); |
| 61 | + public static BuildRuntime Swift58 => new BuildRuntime("swift-5.8"); |
| 62 | + public static BuildRuntime Swift59 => new BuildRuntime("swift-5.9"); |
| 63 | + public static BuildRuntime Swift510 => new BuildRuntime("swift-5.10"); |
| 64 | + public static BuildRuntime Kotlin16 => new BuildRuntime("kotlin-1.6"); |
| 65 | + public static BuildRuntime Kotlin18 => new BuildRuntime("kotlin-1.8"); |
| 66 | + public static BuildRuntime Kotlin19 => new BuildRuntime("kotlin-1.9"); |
| 67 | + public static BuildRuntime Kotlin20 => new BuildRuntime("kotlin-2.0"); |
| 68 | + public static BuildRuntime Cpp17 => new BuildRuntime("cpp-17"); |
| 69 | + public static BuildRuntime Cpp20 => new BuildRuntime("cpp-20"); |
| 70 | + public static BuildRuntime Bun10 => new BuildRuntime("bun-1.0"); |
| 71 | + public static BuildRuntime Bun11 => new BuildRuntime("bun-1.1"); |
| 72 | + public static BuildRuntime Go123 => new BuildRuntime("go-1.23"); |
| 73 | + public static BuildRuntime Static1 => new BuildRuntime("static-1"); |
| 74 | + public static BuildRuntime Flutter324 => new BuildRuntime("flutter-3.24"); |
| 75 | + public static BuildRuntime Flutter327 => new BuildRuntime("flutter-3.27"); |
| 76 | + public static BuildRuntime Flutter329 => new BuildRuntime("flutter-3.29"); |
| 77 | + } |
| 78 | +} |
0 commit comments