/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
protos/Ydb/Scripting/ExecuteYqlRequest.php
148 строк
4 KB
Alexei Shabalin
updated protos
17 фев 2023, 13:31
17 фев 2023, 13:31
ae6a264
Код
Авторство
О чём код?
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: protos/ydb_scripting.proto namespace Ydb\Scripting; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Generated from protobuf message <code>Ydb.Scripting.ExecuteYqlRequest</code> */ class ExecuteYqlRequest extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 1;</code> */ protected $operation_params = null; /** * Generated from protobuf field <code>string script = 2;</code> */ protected $script = ''; /** * Generated from protobuf field <code>map<string, .Ydb.TypedValue> parameters = 3;</code> */ private $parameters; /** * Generated from protobuf field <code>.Ydb.Table.QueryStatsCollection.Mode collect_stats = 4;</code> */ protected $collect_stats = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Ydb\Operations\OperationParams $operation_params * @type string $script * @type array|\Google\Protobuf\Internal\MapField $parameters * @type int $collect_stats * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbScripting::initOnce(); parent::__construct($data); } /** * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 1;</code> * @return \Ydb\Operations\OperationParams|null */ public function getOperationParams() { return $this->operation_params; } public function hasOperationParams() { return isset($this->operation_params); } public function clearOperationParams() { unset($this->operation_params); } /** * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 1;</code> * @param \Ydb\Operations\OperationParams $var * @return $this */ public function setOperationParams($var) { GPBUtil::checkMessage($var, \Ydb\Operations\OperationParams::class); $this->operation_params = $var; return $this; } /** * Generated from protobuf field <code>string script = 2;</code> * @return string */ public function getScript() { return $this->script; } /** * Generated from protobuf field <code>string script = 2;</code> * @param string $var * @return $this */ public function setScript($var) { GPBUtil::checkString($var, True); $this->script = $var; return $this; } /** * Generated from protobuf field <code>map<string, .Ydb.TypedValue> parameters = 3;</code> * @return \Google\Protobuf\Internal\MapField */ public function getParameters() { return $this->parameters; } /** * Generated from protobuf field <code>map<string, .Ydb.TypedValue> parameters = 3;</code> * @param array|\Google\Protobuf\Internal\MapField $var * @return $this */ public function setParameters($var) { $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\TypedValue::class); $this->parameters = $arr; return $this; } /** * Generated from protobuf field <code>.Ydb.Table.QueryStatsCollection.Mode collect_stats = 4;</code> * @return int */ public function getCollectStats() { return $this->collect_stats; } /** * Generated from protobuf field <code>.Ydb.Table.QueryStatsCollection.Mode collect_stats = 4;</code> * @param int $var * @return $this */ public function setCollectStats($var) { GPBUtil::checkEnum($var, \Ydb\Table\QueryStatsCollection\Mode::class); $this->collect_stats = $var; return $this; } }