説明なし

SeqMapTask.php 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_Dataflow_SeqMapTask extends Google_Collection
  18. {
  19. protected $collection_key = 'outputInfos';
  20. protected $inputsType = 'Google_Service_Dataflow_SideInputInfo';
  21. protected $inputsDataType = 'array';
  22. public $name;
  23. protected $outputInfosType = 'Google_Service_Dataflow_SeqMapTaskOutputInfo';
  24. protected $outputInfosDataType = 'array';
  25. public $stageName;
  26. public $systemName;
  27. public $userFn;
  28. /**
  29. * @param Google_Service_Dataflow_SideInputInfo
  30. */
  31. public function setInputs($inputs)
  32. {
  33. $this->inputs = $inputs;
  34. }
  35. /**
  36. * @return Google_Service_Dataflow_SideInputInfo
  37. */
  38. public function getInputs()
  39. {
  40. return $this->inputs;
  41. }
  42. public function setName($name)
  43. {
  44. $this->name = $name;
  45. }
  46. public function getName()
  47. {
  48. return $this->name;
  49. }
  50. /**
  51. * @param Google_Service_Dataflow_SeqMapTaskOutputInfo
  52. */
  53. public function setOutputInfos($outputInfos)
  54. {
  55. $this->outputInfos = $outputInfos;
  56. }
  57. /**
  58. * @return Google_Service_Dataflow_SeqMapTaskOutputInfo
  59. */
  60. public function getOutputInfos()
  61. {
  62. return $this->outputInfos;
  63. }
  64. public function setStageName($stageName)
  65. {
  66. $this->stageName = $stageName;
  67. }
  68. public function getStageName()
  69. {
  70. return $this->stageName;
  71. }
  72. public function setSystemName($systemName)
  73. {
  74. $this->systemName = $systemName;
  75. }
  76. public function getSystemName()
  77. {
  78. return $this->systemName;
  79. }
  80. public function setUserFn($userFn)
  81. {
  82. $this->userFn = $userFn;
  83. }
  84. public function getUserFn()
  85. {
  86. return $this->userFn;
  87. }
  88. }