Scalr\Service\OpenStack\Services\Servers\Type\ListServersFilter::__construct PHP Метод

__construct() публичный Метод

Convenient constructor
public __construct ( string $name = null, string $flavorId = null, string $imageId = null, Scalr\Service\OpenStack\Services\Servers\Type\ServerStatus $status = null, DateTime $changesSince = null, string $marker = null, number $limit = null )
$name string optional A Server name.
$flavorId string optional A Flavor ID.
$imageId string optional An Image ID.
$status Scalr\Service\OpenStack\Services\Servers\Type\ServerStatus optional A server status.
$changesSince DateTime optional A changes-since date.
$marker string optional Marker.
$limit number optional Limit.
    public function __construct($name = null, $flavorId = null, $imageId = null, ServerStatus $status = null, DateTime $changesSince = null, $marker = null, $limit = null)
    {
        parent::__construct($marker, $limit);
        $this->setName($name)->setFlavorId($flavorId)->setImage($imageId)->setStatus($status)->setChangesSince($changesSince);
    }