appwrite/src/Appwrite/Utopia/Database/Validator/Queries/Deployments.php

23 lines
391 B
PHP
Raw Normal View History

2022-08-23 09:12:48 +00:00
<?php
namespace Appwrite\Utopia\Database\Validator\Queries;
2022-08-23 15:01:57 +00:00
class Deployments extends Base
2022-08-23 09:12:48 +00:00
{
public const ALLOWED_ATTRIBUTES = [
'entrypoint',
'size',
'buildId',
'activate',
];
/**
* Expression constructor
*
*/
public function __construct()
{
parent::__construct('deployments', self::ALLOWED_ATTRIBUTES);
}
}