ListEndpointsRequest.php 2.1 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.ListEndpointsRequest</code>
  10. */
  11. class ListEndpointsRequest extends \Google\Protobuf\Internal\Message
  12. {
  13. /**
  14. * Generated from protobuf field <code>string database = 1;</code>
  15. */
  16. protected $database = '';
  17. /**
  18. * Generated from protobuf field <code>repeated string service = 2;</code>
  19. */
  20. private $service;
  21. /**
  22. * Constructor.
  23. *
  24. * @param array $data {
  25. * Optional. Data for populating the Message object.
  26. *
  27. * @type string $database
  28. * @type array<string>|\Google\Protobuf\Internal\RepeatedField $service
  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>string database = 1;</code>
  37. * @return string
  38. */
  39. public function getDatabase()
  40. {
  41. return $this->database;
  42. }
  43. /**
  44. * Generated from protobuf field <code>string database = 1;</code>
  45. * @param string $var
  46. * @return $this
  47. */
  48. public function setDatabase($var)
  49. {
  50. GPBUtil::checkString($var, True);
  51. $this->database = $var;
  52. return $this;
  53. }
  54. /**
  55. * Generated from protobuf field <code>repeated string service = 2;</code>
  56. * @return \Google\Protobuf\Internal\RepeatedField
  57. */
  58. public function getService()
  59. {
  60. return $this->service;
  61. }
  62. /**
  63. * Generated from protobuf field <code>repeated string service = 2;</code>
  64. * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
  65. * @return $this
  66. */
  67. public function setService($var)
  68. {
  69. $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
  70. $this->service = $arr;
  71. return $this;
  72. }
  73. }