Açıklama Yok

PigJob.php 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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_Dataproc_PigJob extends Google_Collection
  18. {
  19. protected $collection_key = 'jarFileUris';
  20. public $continueOnFailure;
  21. public $jarFileUris;
  22. protected $loggingConfigType = 'Google_Service_Dataproc_LoggingConfig';
  23. protected $loggingConfigDataType = '';
  24. public $properties;
  25. public $queryFileUri;
  26. protected $queryListType = 'Google_Service_Dataproc_QueryList';
  27. protected $queryListDataType = '';
  28. public $scriptVariables;
  29. public function setContinueOnFailure($continueOnFailure)
  30. {
  31. $this->continueOnFailure = $continueOnFailure;
  32. }
  33. public function getContinueOnFailure()
  34. {
  35. return $this->continueOnFailure;
  36. }
  37. public function setJarFileUris($jarFileUris)
  38. {
  39. $this->jarFileUris = $jarFileUris;
  40. }
  41. public function getJarFileUris()
  42. {
  43. return $this->jarFileUris;
  44. }
  45. /**
  46. * @param Google_Service_Dataproc_LoggingConfig
  47. */
  48. public function setLoggingConfig(Google_Service_Dataproc_LoggingConfig $loggingConfig)
  49. {
  50. $this->loggingConfig = $loggingConfig;
  51. }
  52. /**
  53. * @return Google_Service_Dataproc_LoggingConfig
  54. */
  55. public function getLoggingConfig()
  56. {
  57. return $this->loggingConfig;
  58. }
  59. public function setProperties($properties)
  60. {
  61. $this->properties = $properties;
  62. }
  63. public function getProperties()
  64. {
  65. return $this->properties;
  66. }
  67. public function setQueryFileUri($queryFileUri)
  68. {
  69. $this->queryFileUri = $queryFileUri;
  70. }
  71. public function getQueryFileUri()
  72. {
  73. return $this->queryFileUri;
  74. }
  75. /**
  76. * @param Google_Service_Dataproc_QueryList
  77. */
  78. public function setQueryList(Google_Service_Dataproc_QueryList $queryList)
  79. {
  80. $this->queryList = $queryList;
  81. }
  82. /**
  83. * @return Google_Service_Dataproc_QueryList
  84. */
  85. public function getQueryList()
  86. {
  87. return $this->queryList;
  88. }
  89. public function setScriptVariables($scriptVariables)
  90. {
  91. $this->scriptVariables = $scriptVariables;
  92. }
  93. public function getScriptVariables()
  94. {
  95. return $this->scriptVariables;
  96. }
  97. }