mirror of
https://github.com/appwrite/appwrite
synced 2026-05-06 14:58:33 +00:00
22 lines
391 B
PHP
22 lines
391 B
PHP
<?php
|
|
|
|
namespace Appwrite\Utopia\Database\Validator\Queries;
|
|
|
|
class Deployments extends Base
|
|
{
|
|
public const ALLOWED_ATTRIBUTES = [
|
|
'entrypoint',
|
|
'size',
|
|
'buildId',
|
|
'activate',
|
|
];
|
|
|
|
/**
|
|
* Expression constructor
|
|
*
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct('deployments', self::ALLOWED_ATTRIBUTES);
|
|
}
|
|
}
|