123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?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;
- }
- }
|