diff --git a/src/Appwrite/Utopia/Response/Model/Build.php b/src/Appwrite/Utopia/Response/Model/Build.php index 4d6638ccc2..be3d8a431b 100644 --- a/src/Appwrite/Utopia/Response/Model/Build.php +++ b/src/Appwrite/Utopia/Response/Model/Build.php @@ -22,6 +22,11 @@ class Build extends Model 'default' => 0, 'example' => 1592981250, ]) + // Build Status + // Failed - The tag build has failed. More details can usually be found in buildStderr + // Ready - The tag build was successful and the tag is ready to be deployed + // Processing - The tag is currently waiting to have a build triggered + // Building - The tag is currently being built ->addRule('status', [ 'type' => self::TYPE_STRING, 'description' => 'The build status.', diff --git a/src/Appwrite/Utopia/Response/Model/Tag.php b/src/Appwrite/Utopia/Response/Model/Tag.php index 38fa305fce..a027e63317 100644 --- a/src/Appwrite/Utopia/Response/Model/Tag.php +++ b/src/Appwrite/Utopia/Response/Model/Tag.php @@ -40,6 +40,11 @@ class Tag extends Model 'default' => 0, 'example' => 128, ]) + // Build Status + // Failed - The tag build has failed. More details can usually be found in buildStderr + // Ready - The tag build was successful and the tag is ready to be deployed + // Processing - The tag is currently waiting to have a build triggered + // Building - The tag is currently being built ->addRule('status', [ 'type' => self::TYPE_STRING, 'description' => 'The tags current built status',