/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
protos/Ydb/Cms/ComputationalUnitDescription.php
111 строк
3 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_cms.proto namespace Ydb\Cms; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Generated from protobuf message <code>Ydb.Cms.ComputationalUnitDescription</code> */ class ComputationalUnitDescription extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field <code>string kind = 1;</code> */ protected $kind = ''; /** * Generated from protobuf field <code>map<string, string> labels = 2;</code> */ private $labels; /** * Generated from protobuf field <code>repeated string allowed_availability_zones = 3;</code> */ private $allowed_availability_zones; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $kind * @type array|\Google\Protobuf\Internal\MapField $labels * @type array<string>|\Google\Protobuf\Internal\RepeatedField $allowed_availability_zones * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbCms::initOnce(); parent::__construct($data); } /** * Generated from protobuf field <code>string kind = 1;</code> * @return string */ public function getKind() { return $this->kind; } /** * Generated from protobuf field <code>string kind = 1;</code> * @param string $var * @return $this */ public function setKind($var) { GPBUtil::checkString($var, True); $this->kind = $var; return $this; } /** * Generated from protobuf field <code>map<string, string> labels = 2;</code> * @return \Google\Protobuf\Internal\MapField */ public function getLabels() { return $this->labels; } /** * Generated from protobuf field <code>map<string, string> labels = 2;</code> * @param array|\Google\Protobuf\Internal\MapField $var * @return $this */ public function setLabels($var) { $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::STRING); $this->labels = $arr; return $this; } /** * Generated from protobuf field <code>repeated string allowed_availability_zones = 3;</code> * @return \Google\Protobuf\Internal\RepeatedField */ public function getAllowedAvailabilityZones() { return $this->allowed_availability_zones; } /** * Generated from protobuf field <code>repeated string allowed_availability_zones = 3;</code> * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setAllowedAvailabilityZones($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING); $this->allowed_availability_zones = $arr; return $this; } }