ListEndpointsResult.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # source: protos/ydb_discovery.proto
  4. namespace Ydb\Discovery;
  5. use Google\Protobuf\Internal\GPBType;
  6. use Google\Protobuf\Internal\RepeatedField;
  7. use Google\Protobuf\Internal\GPBUtil;
  8. /**
  9. * Generated from protobuf message <code>Ydb.Discovery.ListEndpointsResult</code>
  10. */
  11. class ListEndpointsResult extends \Google\Protobuf\Internal\Message
  12. {
  13. /**
  14. * Generated from protobuf field <code>repeated .Ydb.Discovery.EndpointInfo endpoints = 1;</code>
  15. */
  16. private $endpoints;
  17. /**
  18. * Generated from protobuf field <code>string self_location = 2;</code>
  19. */
  20. protected $self_location = '';
  21. /**
  22. * Constructor.
  23. *
  24. * @param array $data {
  25. * Optional. Data for populating the Message object.
  26. *
  27. * @type array<\Ydb\Discovery\EndpointInfo>|\Google\Protobuf\Internal\RepeatedField $endpoints
  28. * @type string $self_location
  29. * }
  30. */
  31. public function __construct($data = NULL) {
  32. \GPBMetadata\Protos\YdbDiscovery::initOnce();
  33. parent::__construct($data);
  34. }
  35. /**
  36. * Generated from protobuf field <code>repeated .Ydb.Discovery.EndpointInfo endpoints = 1;</code>
  37. * @return \Google\Protobuf\Internal\RepeatedField
  38. */
  39. public function getEndpoints()
  40. {
  41. return $this->endpoints;
  42. }
  43. /**
  44. * Generated from protobuf field <code>repeated .Ydb.Discovery.EndpointInfo endpoints = 1;</code>
  45. * @param array<\Ydb\Discovery\EndpointInfo>|\Google\Protobuf\Internal\RepeatedField $var
  46. * @return $this
  47. */
  48. public function setEndpoints($var)
  49. {
  50. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Discovery\EndpointInfo::class);
  51. $this->endpoints = $arr;
  52. return $this;
  53. }
  54. /**
  55. * Generated from protobuf field <code>string self_location = 2;</code>
  56. * @return string
  57. */
  58. public function getSelfLocation()
  59. {
  60. return $this->self_location;
  61. }
  62. /**
  63. * Generated from protobuf field <code>string self_location = 2;</code>
  64. * @param string $var
  65. * @return $this
  66. */
  67. public function setSelfLocation($var)
  68. {
  69. GPBUtil::checkString($var, True);
  70. $this->self_location = $var;
  71. return $this;
  72. }
  73. }